source: python/demos/demo_specdesc.py @ ff28d81

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/timestretchfix/ffmpeg5
Last change on this file since ff28d81 was a377204, checked in by Paul Brossier <piem@piem.org>, 8 years ago

python/demos/demo_specdesc.py: remove unused import

  • Property mode set to 100755
File size: 2.5 KB
RevLine 
[7175ed4]1#! /usr/bin/env python
[6639eb1]2
[5d5d6b9]3import sys
[4120fbc]4import numpy as np
[a377204]5from aubio import source, pvoc, specdesc
[6639eb1]6
[5d5d6b9]7win_s = 512                 # fft size
[4120fbc]8hop_s = win_s // 4          # hop size
[6639eb1]9
[5d5d6b9]10if len(sys.argv) < 2:
[4120fbc]11    print("Usage: %s <filename> [samplerate]" % sys.argv[0])
[5d5d6b9]12    sys.exit(1)
[6639eb1]13
[5d5d6b9]14filename = sys.argv[1]
[6639eb1]15
[5d5d6b9]16samplerate = 0
17if len( sys.argv ) > 2: samplerate = int(sys.argv[2])
[6639eb1]18
[5d5d6b9]19s = source(filename, samplerate, hop_s)
20samplerate = s.samplerate
[6639eb1]21
[5d5d6b9]22pv = pvoc(win_s, hop_s)
[6639eb1]23
[6ff6d18]24methods = ['default', 'energy', 'hfc', 'complex', 'phase', 'specdiff', 'kl',
25        'mkl', 'specflux', 'centroid', 'slope', 'rolloff', 'spread', 'skewness',
26        'kurtosis', 'decrease',]
[6639eb1]27
[5d5d6b9]28all_descs = {}
29o = {}
[6639eb1]30
31for method in methods:
[5d5d6b9]32    cands = []
[4120fbc]33    all_descs[method] = np.array([])
[5d5d6b9]34    o[method] = specdesc(method, win_s)
35
36total_frames = 0
37downsample = 2
[6639eb1]38
[5d5d6b9]39while True:
40    samples, read = s()
41    fftgrain = pv(samples)
[4120fbc]42    #outstr = "%f" % ( total_frames / float(samplerate) )
[5d5d6b9]43    for method in methods:
44        specdesc_val = o[method](fftgrain)[0]
[4120fbc]45        all_descs[method] = np.append(all_descs[method], specdesc_val)
46        #outstr += " %f" % specdesc_val
47    #print(outstr)
[5d5d6b9]48    total_frames += read
49    if read < hop_s: break
[6639eb1]50
51if 1:
[4120fbc]52    print("done computing, now plotting")
[5d5d6b9]53    import matplotlib.pyplot as plt
54    from demo_waveform_plot import get_waveform_plot
[6ff6d18]55    from demo_waveform_plot import set_xlabels_sample2time
[5d5d6b9]56    fig = plt.figure()
57    plt.rc('lines',linewidth='.8')
58    wave = plt.axes([0.1, 0.75, 0.8, 0.19])
[6ff6d18]59    get_waveform_plot(filename, samplerate, block_size = hop_s, ax = wave )
[5d5d6b9]60    wave.yaxis.set_visible(False)
61    wave.xaxis.set_visible(False)
[6639eb1]62
[5d5d6b9]63    all_desc_times = [ x * hop_s  for x in range(len(all_descs["default"])) ]
64    n_methods = len(methods)
65    for i, method in enumerate(methods):
66        #ax = fig.add_subplot (n_methods, 1, i)
67        #plt2 = plt.axes([0.1, 0.1, 0.8, 0.65], sharex = plt1)
68        ax = plt.axes ( [0.1, 0.75 - ((i+1) * 0.65 / n_methods),  0.8, 0.65 / n_methods], sharex = wave )
69        ax.plot(all_desc_times, all_descs[method], '-', label = method)
70        #ax.set_ylabel(method, rotation = 0)
71        ax.xaxis.set_visible(False)
72        ax.yaxis.set_visible(False)
73        ax.axis(xmax = all_desc_times[-1], xmin = all_desc_times[0])
[4f2c28c]74        ax.annotate(method, xy=(-10, 0),  xycoords='axes points',
[5d5d6b9]75                horizontalalignment='right', verticalalignment='bottom',
76                )
[6ff6d18]77    set_xlabels_sample2time(ax, all_desc_times[-1], samplerate)
[5d5d6b9]78    #plt.ylabel('spectral descriptor value')
79    ax.xaxis.set_visible(True)
80    plt.show()
Note: See TracBrowser for help on using the repository browser.