diff options
author | John Glover <j@johnglover.net> | 2012-07-06 14:53:01 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-07-06 14:53:01 +0100 |
commit | d15e78188a9cdbd70640ac57e42d4a598c89b532 (patch) | |
tree | 6c7c371cc7271312ec74f4c6e80eef44513568e6 /tests/test_residual.py | |
parent | e124bdb052109b1b0e73ae51f55df32f52dbcf9c (diff) | |
download | simpl-d15e78188a9cdbd70640ac57e42d4a598c89b532.tar.gz simpl-d15e78188a9cdbd70640ac57e42d4a598c89b532.tar.bz2 simpl-d15e78188a9cdbd70640ac57e42d4a598c89b532.zip |
[residual] Add C++ implementation of SMSResidual.
Diffstat (limited to 'tests/test_residual.py')
-rw-r--r-- | tests/test_residual.py | 90 |
1 files changed, 82 insertions, 8 deletions
diff --git a/tests/test_residual.py b/tests/test_residual.py index 205ee59..e3992a8 100644 --- a/tests/test_residual.py +++ b/tests/test_residual.py @@ -7,12 +7,28 @@ import simpl.partial_tracking as partial_tracking import simpl.synthesis as synthesis import simpl.residual as residual -float_precision = 5 +float_precision = 2 frame_size = 512 hop_size = 512 +max_peaks = 10 +max_partials = 10 +num_frames = 30 +num_samples = num_frames * hop_size audio_path = os.path.join( os.path.dirname(__file__), 'audio/flute.wav' ) +libsms_residual_synthesis_path = os.path.join( + os.path.dirname(__file__), 'libsms_residual_synthesis.wav' +) + +PeakDetection = peak_detection.PeakDetection +SMSPeakDetection = peak_detection.SMSPeakDetection +PartialTracking = partial_tracking.PartialTracking +SMSPartialTracking = partial_tracking.SMSPartialTracking +Synthesis = synthesis.Synthesis +SMSSynthesis = synthesis.SMSSynthesis +Residual = residual.Residual +SMSResidual = residual.SMSResidual class TestResidual(object): @@ -20,16 +36,74 @@ class TestResidual(object): def setup_class(cls): cls.audio = simpl.read_wav(audio_path)[0] - def test_synthesis(self): - pd = peak_detection.PeakDetection() + def test_basic(self): + pd = PeakDetection() + frames = pd.find_peaks(self.audio) + + pt = PartialTracking() + frames = pt.find_partials(frames) + + synth = Synthesis() + synth_audio = synth.synth(frames) + + res = Residual() + residual_audio = res.find_residual(synth_audio, self.audio) + assert len(residual_audio) + + +class TestSMSResidual(object): + @classmethod + def setup_class(cls): + cls.audio = simpl.read_wav(audio_path)[0] + cls.audio = cls.audio[0:num_samples] + + def test_basic(self): + pd = SMSPeakDetection() + pd.hop_size = hop_size frames = pd.find_peaks(self.audio) - pt = partial_tracking.PartialTracking() + pt = SMSPartialTracking() + pt.max_partials = max_partials frames = pt.find_partials(frames) - s = synthesis.Synthesis() - synth_audio = s.synth(frames) + synth = SMSSynthesis() + synth.hop_size = hop_size + synth_audio = synth.synth(frames) - r = residual.Residual() - residual_audio = r.find_residual(synth_audio, self.audio) + res = SMSResidual() + residual_audio = res.find_residual(synth_audio, self.audio) assert len(residual_audio) + + def test_residual_synthesis(self): + pd = SMSPeakDetection() + pd.max_peaks = max_peaks + pd.hop_size = hop_size + frames = pd.find_peaks(self.audio) + + pt = SMSPartialTracking() + pt.max_partials = max_partials + frames = pt.find_partials(frames) + + synth = SMSSynthesis() + synth.hop_size = hop_size + synth.max_partials = max_partials + simpl_harmonic = synth.synth(frames) + + res = SMSResidual() + res.hop_size = hop_size + simpl_residual = res.synth(simpl_harmonic, self.audio) + + sms_residual, sampling_rate = simpl.read_wav( + libsms_residual_synthesis_path + ) + + assert len(simpl_residual) == len(sms_residual) + + # import matplotlib.pyplot as plt + # plt.plot(simpl_residual) + # plt.plot(sms_residual) + # plt.show() + + for i in range(len(simpl_residual)): + assert_almost_equals(simpl_residual[i], sms_residual[i], + float_precision) |