summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-06-25 22:18:55 +0100
committerJohn Glover <j@johnglover.net>2012-06-25 22:18:55 +0100
commitfe435dc1a7be3783165f5dfb524a3db49fa55997 (patch)
tree9402282468afca45b7050b17e3910b76f842f207 /src
parent2d6b45e5e5b080d9b4f527734e7f3ae5fb1bf6f4 (diff)
downloadsimpl-fe435dc1a7be3783165f5dfb524a3db49fa55997.tar.gz
simpl-fe435dc1a7be3783165f5dfb524a3db49fa55997.tar.bz2
simpl-fe435dc1a7be3783165f5dfb524a3db49fa55997.zip
[base] Add C++/Cython PeakDetection.frames and Frame.peaks
Diffstat (limited to 'src')
-rw-r--r--src/simpl/base.cpp14
-rw-r--r--src/simpl/base.h6
2 files changed, 16 insertions, 4 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index e07f6fe..afffcbb 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -24,7 +24,7 @@ Peak::~Peak()
}
// Returns true iff this peak is unmatched in the given direction, and has positive amplitude
-bool Peak::is_free(const string direction)
+bool Peak::is_free(const string direction)
{
if(amplitude <= 0.0)
{
@@ -336,6 +336,16 @@ void PeakDetection::min_peak_separation(number new_min_peak_separation)
_min_peak_separation = new_min_peak_separation;
}
+int PeakDetection::num_frames()
+{
+ return _frames.size();
+}
+
+Frame* PeakDetection::frame(int frame_number)
+{
+ return _frames[frame_number];
+}
+
Frames* PeakDetection::frames()
{
return &_frames;
@@ -363,7 +373,7 @@ Frames* PeakDetection::find_peaks(number* audio)
// {
// _frame_size = next_frame_size();
// }
-
+
// // get the next frame
// Frame f = Frame(_frame_size);
// f.audio(audio, pos);
diff --git a/src/simpl/base.h b/src/simpl/base.h
index f70c952..9f12482 100644
--- a/src/simpl/base.h
+++ b/src/simpl/base.h
@@ -46,7 +46,7 @@ typedef std::vector<Peak*> Peaks;
// ---------------------------------------------------------------------------
class Partial {};
-typedef std::vector<Partial> Partials;
+typedef std::vector<Partial*> Partials;
// ---------------------------------------------------------------------------
// Frame
@@ -109,7 +109,7 @@ public:
number* synth_residual();
};
-typedef std::vector<Frame> Frames;
+typedef std::vector<Frame*> Frames;
// ---------------------------------------------------------------------------
// PeakDetection
@@ -151,6 +151,8 @@ public:
void window_size(int new_window_size);
number min_peak_separation();
void min_peak_separation(number new_min_peak_separation);
+ int num_frames();
+ Frame* frame(int frame_number);
Frames* frames();
// Find and return all spectral peaks in a given frame of audio