summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-07-08 18:47:42 +0200
committerJohn Glover <j@johnglover.net>2012-07-08 18:47:42 +0200
commit1ece49f339453d45c614efa450f49348ff8f9372 (patch)
treef83b2fd3cc126d45979a45454ec647ec5bfa1d76
parent5111f05b930f5d9a0d306bfaaa31a3b1c392d21a (diff)
downloadsimpl-1ece49f339453d45c614efa450f49348ff8f9372.tar.gz
simpl-1ece49f339453d45c614efa450f49348ff8f9372.tar.bz2
simpl-1ece49f339453d45c614efa450f49348ff8f9372.zip
[peak_detection] Bug fix: add peaks to frame object in
find_peaks_in_frame instead of in find_peaks. Set SMSAnalysisParams.iSizeSound to be the hop size, so some value is set when used in real-time.
-rw-r--r--src/simpl/peak_detection.cpp19
-rw-r--r--tests/test_peak_detection.py2
2 files changed, 12 insertions, 9 deletions
diff --git a/src/simpl/peak_detection.cpp b/src/simpl/peak_detection.cpp
index eff7d56..35080e2 100644
--- a/src/simpl/peak_detection.cpp
+++ b/src/simpl/peak_detection.cpp
@@ -120,6 +120,11 @@ void PeakDetection::frames(Frames new_frames) {
// Find and return all spectral peaks in a given frame of audio
Peaks PeakDetection::find_peaks_in_frame(Frame* frame) {
Peaks peaks;
+
+ for(int i = 0; i < peaks.size(); i++) {
+ frame->add_peak(peaks[i]);
+ }
+
return peaks;
}
@@ -143,10 +148,7 @@ Frames PeakDetection::find_peaks(int audio_size, sample* audio) {
f->max_peaks(_max_peaks);
// find peaks
- Peaks peaks = find_peaks_in_frame(f);
- for(int i = 0; i < peaks.size(); i++) {
- f->add_peak(peaks[i]);
- }
+ find_peaks_in_frame(f);
_frames.push_back(f);
pos += _hop_size;
@@ -177,6 +179,7 @@ SMSPeakDetection::SMSPeakDetection() {
_analysis_params.nGuides = _max_peaks;
_analysis_params.preEmphasis = 0;
sms_initAnalysis(&_analysis_params);
+ _analysis_params.iSizeSound = _hop_size;
sms_initSpectralPeaks(&_peaks, _max_peaks);
@@ -203,6 +206,7 @@ void SMSPeakDetection::hop_size(int new_hop_size) {
sms_freeAnalysis(&_analysis_params);
_analysis_params.iFrameRate = _sampling_rate / _hop_size;
sms_initAnalysis(&_analysis_params);
+ _analysis_params.iSizeSound = _hop_size;
}
void SMSPeakDetection::max_peaks(int new_max_peaks) {
@@ -235,6 +239,8 @@ Peaks SMSPeakDetection::find_peaks_in_frame(Frame* frame) {
p->frequency = _peaks.pSpectralPeaks[i].fFreq;
p->phase = _peaks.pSpectralPeaks[i].fPhase;
peaks.push_back(p);
+
+ frame->add_peak(p);
}
return peaks;
}
@@ -261,10 +267,7 @@ Frames SMSPeakDetection::find_peaks(int audio_size, sample* audio) {
f->max_peaks(_max_peaks);
// find peaks
- Peaks peaks = find_peaks_in_frame(f);
- for(int i = 0; i < peaks.size(); i++) {
- f->add_peak(peaks[i]);
- }
+ find_peaks_in_frame(f);
_frames.push_back(f);
diff --git a/tests/test_peak_detection.py b/tests/test_peak_detection.py
index 84505b7..f339818 100644
--- a/tests/test_peak_detection.py
+++ b/tests/test_peak_detection.py
@@ -99,6 +99,6 @@ class TestSMSPeakDetection(object):
assert len(sms_frames) == len(frames)
for frame in frames:
- assert frame.num_peaks <= max_peaks
+ assert frame.num_peaks <= max_peaks, frame.num_peaks
max_amp = max([p.amplitude for p in frame.peaks])
assert max_amp