summaryrefslogtreecommitdiff
path: root/src/loris/SpectralPeakSelector.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2011-07-08 18:06:21 +0100
committerJohn Glover <glover.john@gmail.com>2011-07-08 18:06:21 +0100
commitd6073e01c933c77f1e2bc3c3fe1126d617003549 (patch)
tree695d23677c5b84bf3a0f88fbd4959b4f7cbc0e90 /src/loris/SpectralPeakSelector.h
parent641688b252da468eb374674a0dbaae1bbac70b2b (diff)
downloadsimpl-d6073e01c933c77f1e2bc3c3fe1126d617003549.tar.gz
simpl-d6073e01c933c77f1e2bc3c3fe1126d617003549.tar.bz2
simpl-d6073e01c933c77f1e2bc3c3fe1126d617003549.zip
Start adding Loris files
Diffstat (limited to 'src/loris/SpectralPeakSelector.h')
-rw-r--r--src/loris/SpectralPeakSelector.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/loris/SpectralPeakSelector.h b/src/loris/SpectralPeakSelector.h
new file mode 100644
index 0000000..c55056e
--- /dev/null
+++ b/src/loris/SpectralPeakSelector.h
@@ -0,0 +1,90 @@
+#ifndef INCLUDE_SPECTRALPEAKSELECTOR_H
+#define INCLUDE_SPECTRALPEAKSELECTOR_H
+/*
+ * This is the Loris C++ Class Library, implementing analysis,
+ * manipulation, and synthesis of digitized sounds using the Reassigned
+ * Bandwidth-Enhanced Additive Sound Model.
+ *
+ * Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY, without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ *
+ * SpectralPeakSelector.h
+ *
+ * Definition of a class representing a policy for selecting energy
+ * peaks in a reassigned spectrum to be used in Partial formation.
+ *
+ * Kelly Fitz, 28 May 2003
+ * loris@cerlsoundgroup.org
+ *
+ * http://www.cerlsoundgroup.org/Loris/
+ *
+ */
+
+#include "SpectralPeaks.h"
+
+// begin namespace
+namespace Loris {
+
+class ReassignedSpectrum;
+
+// ---------------------------------------------------------------------------
+// class SpectralPeakSelector
+//
+// A class representing the process of selecting
+// peaks (ridges) on a reassigned time-frequency surface.
+//
+class SpectralPeakSelector
+{
+// --- interface ---
+public:
+ // construction:
+ SpectralPeakSelector( double srate, double maxTimeCorrection );
+
+ // Collect and return magnitude peaks in the lower half of the spectrum,
+ // ignoring those having frequencies below the specified minimum (in Hz), and
+ // those having large time corrections.
+ //
+ // If the minimumFrequency is unspecified, 0 Hz is used.
+ //
+ // There are two strategies for doing. Probably each one should be a
+ // separate class, but for now, they are just separate functions.
+ Peaks selectPeaks( ReassignedSpectrum & spectrum, double minFrequency = 0 );
+
+
+// --- implementation ---
+private:
+
+ // There are two strategies for doing. Probably each one should be a
+ // separate class, but for now, they are just separate functions.
+ //
+ // Currently, the reassignment minima are used.
+
+ Peaks selectReassignmentMinima( ReassignedSpectrum & spectrum, double minFrequency );
+ Peaks selectMagnitudePeaks( ReassignedSpectrum & spectrum, double minFrequency );
+
+
+// --- member data ---
+
+ double mSampleRate;
+ double mMaxTimeOffset;
+
+
+}; // end of class SpectralPeakSelector
+
+} // end of namespace Loris
+
+#endif /* ndef INCLUDE_SPECTRALPEAKSELECTOR_H */