Changeset cafb00a for python/test/bench/pitch/bench-pitch
- Timestamp:
- Mar 3, 2006, 6:39:21 AM (19 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- ec10780
- Parents:
- 3043081
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/test/bench/pitch/bench-pitch
r3043081 rcafb00a 80 80 g.xlabel('original pitch (Hz)') 81 81 g.ylabel('detected pitch (Hz)') 82 g('set key left top') 82 83 g('set log xy') 84 g('set xrange [50:2000]') 85 g('set yrange [50:2000]') 83 86 g.plot(*d) 84 87 … … 94 97 95 98 params = taskparams() 96 params.bufsize = 2048 97 params.hopsize = params.bufsize/2 99 params.bufsize = 4096 100 params.hopsize = params.bufsize/4 101 params.silence = -1000. 102 params.pitchsmooth = 50 98 103 benchpitch = benchpitch(datapath,params=params) 99 104 benchpitch.task = taskpitch
Note: See TracChangeset
for help on using the changeset viewer.