diff options
author | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
commit | ce65c30264be9683dd3a59b35730d2f31e02d37f (patch) | |
tree | 90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj.py | |
parent | b46b988f164f983fc889c7bc0c96953e4609d27a (diff) | |
download | simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2 simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip |
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj.py')
-rw-r--r-- | sndobj.py | 38 |
1 files changed, 27 insertions, 11 deletions
@@ -86,7 +86,15 @@ class SndObjPeakDetection(simpl.PeakDetection): p.amplitude = self._analysis.Output(i*3) p.frequency = self._analysis.Output((i*3)+1) p.phase = self._analysis.Output((i*3)+2) - current_peaks.append(p) + if not current_peaks: + current_peaks.append(p) + else: + if np.abs(p.frequency - current_peaks[-1].frequency) > self._min_peak_separation: + current_peaks.append(p) + else: + if p.amplitude > current_peaks[-1].amplitude: + current_peaks.remove(current_peaks[-1]) + current_peaks.append(p) return current_peaks @@ -108,9 +116,9 @@ class SndObjPartialTracking(simpl.PartialTracking): frame_partials = [] # load Peak amplitudes, frequencies and phases into arrays num_peaks = len(frame) - amps = np.zeros(num_peaks, dtype=np.float32) - freqs = np.zeros(num_peaks, dtype=np.float32) - phases = np.zeros(num_peaks, dtype=np.float32) + amps = simpl.zeros(num_peaks) + freqs = simpl.zeros(num_peaks) + phases = simpl.zeros(num_peaks) for i in range(num_peaks): peak = frame[i] amps[i] = peak.amplitude @@ -146,16 +154,24 @@ class SimplSndObjAnalysisWrapper(pysndobj.SinAnal): data to the SndObj synthesis objects.""" def __init__(self): pysndobj.SinAnal.__init__(self) - self.peaks = None + self.peaks = [] def GetTracks(self): return len(self.peaks) def GetTrackID(self, partial_number): - return self.peaks[partial_number].partial_id + if partial_number < len(self.peaks): + return self.peaks[partial_number].partial_id + else: + # TODO: what should this return if no matching partial found? + return 0 def Output(self, position): peak = int(position) / 3 + if peak > len(self.peaks): + # TODO: what should this return if no matching partial found? + return 0.0 + data_field = int(position) % 3 if data_field is 0: return self.peaks[peak].amplitude @@ -179,12 +195,12 @@ class SndObjSynthesis(simpl.Synthesis): self._table, 1, self.hop_size) else: raise Exception("UnknownSynthesisType") - self._current_frame = np.zeros(self.hop_size, dtype=np.float32) + self._current_frame = simpl.zeros(self.hop_size) def set_hop_size(self, hop_size): self._synth.SetVectorSize(hop_size) self._hop_size = hop_size - self._current_frame = np.zeros(hop_size, dtype=np.float32) + self._current_frame = simpl.zeros(hop_size) def set_max_partials(self, num_partials): self._synth.Set('max tracks', num_partials) @@ -194,8 +210,7 @@ class SndObjSynthesis(simpl.Synthesis): "Synthesises a frame of audio, given a list of peaks from tracks" self._analysis.peaks = peaks if len(peaks) > self._max_partials: - self._synth.Set('max tracks', len(peaks)) - self._max_partials = len(peaks) + self.max_partials = len(peaks) self._synth.DoProcess() self._synth.PopOut(self._current_frame) return self._current_frame @@ -228,4 +243,5 @@ class SndObjSynthesis(simpl.Synthesis): # remove any finished partials current_partials = [partial for partial in current_partials if partial] - return audio_out
\ No newline at end of file + return audio_out + |