diff options
author | John Glover <j@johnglover.net> | 2012-06-26 19:10:27 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-06-26 19:10:27 +0100 |
commit | c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2 (patch) | |
tree | 67209a93c9be905db4d3a60e943d5ad3f7c38220 /tests/test_base.py | |
parent | fe435dc1a7be3783165f5dfb524a3db49fa55997 (diff) | |
download | simpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.tar.gz simpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.tar.bz2 simpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.zip |
[base] Add C++ implementation of PeakDetection.find_peaks_in_frame and PeakDetection.find_peaks
Diffstat (limited to 'tests/test_base.py')
-rw-r--r-- | tests/test_base.py | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/tests/test_base.py b/tests/test_base.py index 8b00d33..aade0df 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -1,5 +1,8 @@ -import simpl.base as base +import os import numpy as np +import scipy.io.wavfile as wavfile +from nose.tools import assert_almost_equals +import simpl.base as base class TestFrame(object): @@ -39,11 +42,27 @@ class TestFrame(object): assert f.peak(0).amplitude == p.amplitude assert f.peaks[0].amplitude == p.amplitude - f.clear_peaks() + f.clear() assert f.num_peaks == 0 class TestPeakDetection(object): + float_precision = 5 + frame_size = 512 + hop_size = 512 + audio_path = os.path.join( + os.path.dirname(__file__), 'audio/flute.wav' + ) + + @classmethod + def setup_class(cls): + cls.audio = wavfile.read(cls.audio_path)[1] + cls.audio = np.asarray(cls.audio, dtype=np.double) + cls.audio /= np.max(cls.audio) + def test_peak_detection(self): pd = base.PeakDetection() - print pd.frames + pd.find_peaks(self.audio) + + assert len(pd.frames) == len(self.audio) / self.hop_size + assert len(pd.frames[0].peaks) == 0 |