diff options
author | John Glover <j@johnglover.net> | 2012-07-08 18:47:42 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-07-08 18:47:42 +0200 |
commit | 1ece49f339453d45c614efa450f49348ff8f9372 (patch) | |
tree | f83b2fd3cc126d45979a45454ec647ec5bfa1d76 /tests | |
parent | 5111f05b930f5d9a0d306bfaaa31a3b1c392d21a (diff) | |
download | simpl-1ece49f339453d45c614efa450f49348ff8f9372.tar.gz simpl-1ece49f339453d45c614efa450f49348ff8f9372.tar.bz2 simpl-1ece49f339453d45c614efa450f49348ff8f9372.zip |
[peak_detection] Bug fix: add peaks to frame object in
find_peaks_in_frame instead of in find_peaks. Set
SMSAnalysisParams.iSizeSound to be the hop size, so
some value is set when used in real-time.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_peak_detection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_peak_detection.py b/tests/test_peak_detection.py index 84505b7..f339818 100644 --- a/tests/test_peak_detection.py +++ b/tests/test_peak_detection.py @@ -99,6 +99,6 @@ class TestSMSPeakDetection(object): assert len(sms_frames) == len(frames) for frame in frames: - assert frame.num_peaks <= max_peaks + assert frame.num_peaks <= max_peaks, frame.num_peaks max_amp = max([p.amplitude for p in frame.peaks]) assert max_amp |