From c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2 Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 26 Jun 2012 19:10:27 +0100 Subject: [base] Add C++ implementation of PeakDetection.find_peaks_in_frame and PeakDetection.find_peaks --- tests/test_base.py | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) (limited to 'tests') 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 -- cgit v1.2.3