summaryrefslogtreecommitdiff
path: root/tests/test_partial_tracking.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-06-30 10:49:36 +0100
committerJohn Glover <j@johnglover.net>2012-06-30 10:49:36 +0100
commit3e690c70064d884d0e750db3ae6fcf47f1807ab4 (patch)
tree46d7a1156afc043bc452aaddb358aefe4b642049 /tests/test_partial_tracking.py
parent08c52adafddabeb6c7f89bebd84f0ca830d9e7a5 (diff)
downloadsimpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.gz
simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.bz2
simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.zip
Restructure class files.
Group classes by type (peak detection, partial tracking, etc) rather than by algorithm name. This is because Cython needs the full inheritance hierarchy to be in the same file.
Diffstat (limited to 'tests/test_partial_tracking.py')
-rw-r--r--tests/test_partial_tracking.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test_partial_tracking.py b/tests/test_partial_tracking.py
new file mode 100644
index 0000000..004ded7
--- /dev/null
+++ b/tests/test_partial_tracking.py
@@ -0,0 +1,29 @@
+import os
+import numpy as np
+from nose.tools import assert_almost_equals
+import simpl
+import simpl.peak_detection as peak_detection
+import simpl.partial_tracking as partial_tracking
+
+float_precision = 5
+frame_size = 512
+hop_size = 512
+audio_path = os.path.join(
+ os.path.dirname(__file__), 'audio/flute.wav'
+)
+
+
+class TestPartialTracking(object):
+ @classmethod
+ def setup_class(cls):
+ cls.audio = simpl.read_wav(audio_path)[0]
+
+ def test_partial_tracking(self):
+ pd = peak_detection.PeakDetection()
+ frames = pd.find_peaks(self.audio)
+
+ pt = partial_tracking.PartialTracking()
+ frames = pt.find_partials(frames)
+
+ assert len(frames) == len(self.audio) / hop_size
+ assert len(frames[0].partials) == 100