diff options
author | John Glover <j@johnglover.net> | 2012-10-24 22:48:34 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-24 22:48:34 +0200 |
commit | 22648d5210892739f0eabe68afc34839b2bebb2c (patch) | |
tree | b482be4d5abb0b596deaf0151283d2d3d7420b86 /tests | |
parent | 4c9d241754b134d7704bdea04ec90be758eb47c1 (diff) | |
download | simpl-22648d5210892739f0eabe68afc34839b2bebb2c.tar.gz simpl-22648d5210892739f0eabe68afc34839b2bebb2c.tar.bz2 simpl-22648d5210892739f0eabe68afc34839b2bebb2c.zip |
[mq] Add C++ MQPartialTracking class
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_partial_tracking.cpp | 103 |
1 files changed, 101 insertions, 2 deletions
diff --git a/tests/test_partial_tracking.cpp b/tests/test_partial_tracking.cpp index f5c1fff..86cc878 100644 --- a/tests/test_partial_tracking.cpp +++ b/tests/test_partial_tracking.cpp @@ -15,6 +15,100 @@ namespace simpl { // --------------------------------------------------------------------------- +// TestMQPartialTracking +// --------------------------------------------------------------------------- +class TestMQPartialTracking : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestMQPartialTracking); + CPPUNIT_TEST(test_basic); + CPPUNIT_TEST(test_peaks); + CPPUNIT_TEST_SUITE_END(); + +protected: + static const double PRECISION = 0.001; + MQPeakDetection* pd; + MQPartialTracking* pt; + SndfileHandle sf; + int num_samples; + + void test_basic() { + pt->reset(); + pd->hop_size(256); + pd->frame_size(2048); + + sample* audio = new sample[(int)sf.frames()]; + sf.read(audio, (int)sf.frames()); + + Frames frames = pd->find_peaks( + num_samples, &(audio[(int)sf.frames() / 2]) + ); + frames = pt->find_partials(frames); + + for(int i = 0; i < frames.size(); i++) { + CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); + CPPUNIT_ASSERT(frames[i]->num_partials() > 0); + } + } + + void test_peaks() { + pt->reset(); + + Frames frames; + Peaks peaks; + int num_frames = 8; + + for(int i = 0; i < num_frames; i++) { + Peak* p = new Peak(); + p->amplitude = 0.2; + p->frequency = 220; + + Peak* p2 = new Peak(); + p2->amplitude = 0.2; + p2->frequency = 440; + + Frame* f = new Frame(); + f->add_peak(p); + f->add_peak(p2); + + frames.push_back(f); + peaks.push_back(p); + peaks.push_back(p2); + } + + pt->find_partials(frames); + for(int i = 0; i < num_frames; i++) { + CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); + CPPUNIT_ASSERT(frames[i]->num_partials() > 0); + CPPUNIT_ASSERT(frames[i]->partial(0)->amplitude == 0.2); + CPPUNIT_ASSERT(frames[i]->partial(0)->frequency == 220); + CPPUNIT_ASSERT(frames[i]->partial(1)->amplitude == 0.2); + CPPUNIT_ASSERT(frames[i]->partial(1)->frequency == 440); + } + + for(int i = 0; i < num_frames * 2; i++) { + delete peaks[i]; + } + + for(int i = 0; i < num_frames; i++) { + delete frames[i]; + } + } + +public: + void setUp() { + pd = new MQPeakDetection(); + pt = new MQPartialTracking(); + sf = SndfileHandle("../tests/audio/flute.wav"); + num_samples = 4096; + } + + void tearDown() { + delete pd; + delete pt; + } +}; + + +// --------------------------------------------------------------------------- // TestSMSPartialTracking // --------------------------------------------------------------------------- class TestSMSPartialTracking : public CPPUNIT_NS::TestCase { @@ -38,7 +132,9 @@ protected: sample* audio = new sample[(int)sf.frames()]; sf.read(audio, (int)sf.frames()); - Frames frames = pd->find_peaks(num_samples, &(audio[(int)sf.frames() / 2])); + Frames frames = pd->find_peaks( + num_samples, &(audio[(int)sf.frames() / 2]) + ); frames = pt->find_partials(frames); for(int i = 0; i < frames.size(); i++) { @@ -130,7 +226,9 @@ protected: sample* audio = new sample[(int)sf.frames()]; sf.read(audio, (int)sf.frames()); - Frames frames = pd->find_peaks(num_samples, &(audio[(int)sf.frames() / 2])); + Frames frames = pd->find_peaks( + num_samples, &(audio[(int)sf.frames() / 2]) + ); frames = pt->find_partials(frames); for(int i = 0; i < frames.size(); i++) { @@ -199,6 +297,7 @@ public: } // end of namespace simpl +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQPartialTracking); CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestSMSPartialTracking); CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisPartialTracking); |