summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-06-26 19:10:27 +0100
committerJohn Glover <j@johnglover.net>2012-06-26 19:10:27 +0100
commitc6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2 (patch)
tree67209a93c9be905db4d3a60e943d5ad3f7c38220 /src
parentfe435dc1a7be3783165f5dfb524a3db49fa55997 (diff)
downloadsimpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.tar.gz
simpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.tar.bz2
simpl-c6e5e5a1d7b688cfb100aa9e79ad5e7c557abba2.zip
[base] Add C++ implementation of PeakDetection.find_peaks_in_frame and PeakDetection.find_peaks
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.cpp78
-rw-r--r--src/simpl/base.h13
2 files changed, 54 insertions, 37 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index afffcbb..3f6c093 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -1,9 +1,9 @@
-#include <iostream>
#include "base.h"
using namespace std;
using namespace simpl;
+
// ---------------------------------------------------------------------------
// Peak
// ---------------------------------------------------------------------------
@@ -55,6 +55,7 @@ bool Peak::is_free(const string direction)
return true;
}
+
// ---------------------------------------------------------------------------
// Frame
// ---------------------------------------------------------------------------
@@ -103,7 +104,7 @@ void Frame::max_peaks(int new_max_peaks)
{
_max_peaks = new_max_peaks;
- // potentially losing data here but the user shouldn't really do this
+ // TODO: potentially losing data here, should prevent or complain
if((int)_peaks.size() > _max_peaks)
{
_peaks.resize(_max_peaks);
@@ -128,7 +129,7 @@ Peak* Frame::peak(int peak_number)
return _peaks[peak_number];
}
-void Frame::clear_peaks()
+void Frame::clear()
{
_peaks.clear();
}
@@ -231,6 +232,7 @@ number* Frame::synth_residual()
return _synth_residual;
}
+
// ---------------------------------------------------------------------------
// PeakDetection
// ---------------------------------------------------------------------------
@@ -249,6 +251,16 @@ PeakDetection::PeakDetection()
PeakDetection::~PeakDetection()
{
+ clear();
+}
+
+void PeakDetection::clear()
+{
+ for(int i = 0; i < _frames.size(); i++)
+ {
+ delete _frames[i];
+ }
+
_frames.clear();
}
@@ -346,15 +358,15 @@ Frame* PeakDetection::frame(int frame_number)
return _frames[frame_number];
}
-Frames* PeakDetection::frames()
+Frames PeakDetection::frames()
{
- return &_frames;
+ return _frames;
}
// Find and return all spectral peaks in a given frame of audio
-Peaks* PeakDetection::find_peaks_in_frame(const Frame& frame)
+Peaks PeakDetection::find_peaks_in_frame(Frame* frame)
{
- Peaks* peaks = new Peaks();
+ Peaks peaks;
return peaks;
}
@@ -362,30 +374,30 @@ Peaks* PeakDetection::find_peaks_in_frame(const Frame& frame)
// If the signal contains more than 1 frame worth of audio, it will be broken
// up into separate frames, each containing a std::vector of peaks.
// Frames* PeakDetection::find_peaks(const samples& audio)
-Frames* PeakDetection::find_peaks(number* audio)
-{
- // _frames.clear();
- // unsigned int pos = 0;
- // while(pos < audio.size())
- // {
- // // get the next frame size
- // if(!_static_frame_size)
- // {
- // _frame_size = next_frame_size();
- // }
-
- // // get the next frame
- // Frame f = Frame(_frame_size);
- // f.audio(audio, pos);
-
- // // find peaks
- // Peaks* peaks = find_peaks_in_frame(f);
- // f.add_peaks(peaks);
- // delete peaks;
-
- // _frames.push_back(f);
- // pos += _hop_size;
- // }
-
- // return &_frames;
+Frames PeakDetection::find_peaks(int audio_size, number* audio)
+{
+ clear();
+ unsigned int pos = 0;
+
+ while(pos < audio_size - _hop_size)
+ {
+ // get the next frame size
+ if(!_static_frame_size)
+ {
+ _frame_size = next_frame_size();
+ }
+
+ // get the next frame
+ Frame* f = new Frame(_frame_size);
+ f->audio(&audio[pos]);
+
+ // find peaks
+ Peaks peaks = find_peaks_in_frame(f);
+ f->add_peaks(&peaks);
+
+ _frames.push_back(f);
+ pos += _hop_size;
+ }
+
+ return _frames;
}
diff --git a/src/simpl/base.h b/src/simpl/base.h
index 9f12482..d460d0c 100644
--- a/src/simpl/base.h
+++ b/src/simpl/base.h
@@ -12,6 +12,7 @@ namespace simpl
typedef double number;
+
// ---------------------------------------------------------------------------
// Peak
//
@@ -41,6 +42,7 @@ public:
typedef std::vector<Peak*> Peaks;
+
// ---------------------------------------------------------------------------
// Partial
// ---------------------------------------------------------------------------
@@ -48,6 +50,7 @@ class Partial {};
typedef std::vector<Partial*> Partials;
+
// ---------------------------------------------------------------------------
// Frame
//
@@ -85,7 +88,7 @@ public:
void add_peak(Peak* peak);
void add_peaks(Peaks* peaks);
Peak* peak(int peak_number);
- void clear_peaks();
+ void clear();
Peaks::iterator peaks_begin();
Peaks::iterator peaks_end();
@@ -111,6 +114,7 @@ public:
typedef std::vector<Frame*> Frames;
+
// ---------------------------------------------------------------------------
// PeakDetection
//
@@ -133,6 +137,7 @@ private:
public:
PeakDetection();
virtual ~PeakDetection();
+ void clear();
int sampling_rate();
void sampling_rate(int new_sampling_rate);
@@ -153,15 +158,15 @@ public:
void min_peak_separation(number new_min_peak_separation);
int num_frames();
Frame* frame(int frame_number);
- Frames* frames();
+ Frames frames();
// Find and return all spectral peaks in a given frame of audio
- virtual Peaks* find_peaks_in_frame(const Frame& frame);
+ virtual Peaks find_peaks_in_frame(Frame* frame);
// Find and return all spectral peaks in a given audio signal.
// If the signal contains more than 1 frame worth of audio, it will be broken
// up into separate frames, with an array of peaks returned for each frame.
- virtual Frames* find_peaks(number* audio);
+ virtual Frames find_peaks(int audio_size, number* audio);
};
} // end of namespace Simpl