From b46b988f164f983fc889c7bc0c96953e4609d27a Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 19 Oct 2010 17:19:31 +0100 Subject: SMS bug fix, peak magnitudes from SMSPeakDetection were in db instead of linear. --- sms.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sms.py') diff --git a/sms.py b/sms.py index de4277e..4c4584c 100644 --- a/sms.py +++ b/sms.py @@ -15,8 +15,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA import simpl -import pysms -import numpy as np +import simpl.pysms as pysms class SMSPeakDetection(simpl.PeakDetection): "Sinusoidal peak detection using SMS" @@ -173,7 +172,6 @@ class SMSPeakDetection(simpl.PeakDetection): pos = 0 self._analysis_params.iSizeSound = len(audio) while pos < len(audio): - print pos, self.frame_size, self._analysis_params.sizeNextRead, len(audio) # change frame size based on sizeNextRead if not self.static_frame_size: if pos + self.frame_size < len(audio): -- cgit v1.2.3