To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / CepstralPitchTracker.h @ 35:2f5b169e4a3b
History | View | Annotate | Download (2.98 KB)
| 1 |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
|---|---|
| 2 |
/*
|
| 3 |
This file is Copyright (c) 2012 Chris Cannam
|
| 4 |
|
| 5 |
Permission is hereby granted, free of charge, to any person
|
| 6 |
obtaining a copy of this software and associated documentation
|
| 7 |
files (the "Software"), to deal in the Software without
|
| 8 |
restriction, including without limitation the rights to use, copy,
|
| 9 |
modify, merge, publish, distribute, sublicense, and/or sell copies
|
| 10 |
of the Software, and to permit persons to whom the Software is
|
| 11 |
furnished to do so, subject to the following conditions:
|
| 12 |
|
| 13 |
The above copyright notice and this permission notice shall be
|
| 14 |
included in all copies or substantial portions of the Software.
|
| 15 |
|
| 16 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
| 17 |
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
| 18 |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
| 19 |
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
| 20 |
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
| 21 |
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
| 22 |
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
| 23 |
*/
|
| 24 |
|
| 25 |
#ifndef _CEPSTRAL_PITCH_H_
|
| 26 |
#define _CEPSTRAL_PITCH_H_
|
| 27 |
|
| 28 |
#include <vamp-sdk/Plugin.h> |
| 29 |
|
| 30 |
#include "NoteHypothesis.h" |
| 31 |
|
| 32 |
class CepstralPitchTracker : public Vamp::Plugin |
| 33 |
{
|
| 34 |
public:
|
| 35 |
CepstralPitchTracker(float inputSampleRate);
|
| 36 |
virtual ~CepstralPitchTracker(); |
| 37 |
|
| 38 |
std::string getIdentifier() const;
|
| 39 |
std::string getName() const;
|
| 40 |
std::string getDescription() const;
|
| 41 |
std::string getMaker() const;
|
| 42 |
int getPluginVersion() const; |
| 43 |
std::string getCopyright() const;
|
| 44 |
|
| 45 |
InputDomain getInputDomain() const;
|
| 46 |
size_t getPreferredBlockSize() const;
|
| 47 |
size_t getPreferredStepSize() const;
|
| 48 |
size_t getMinChannelCount() const;
|
| 49 |
size_t getMaxChannelCount() const;
|
| 50 |
|
| 51 |
ParameterList getParameterDescriptors() const;
|
| 52 |
float getParameter(std::string identifier) const; |
| 53 |
void setParameter(std::string identifier, float value); |
| 54 |
|
| 55 |
ProgramList getPrograms() const;
|
| 56 |
std::string getCurrentProgram() const;
|
| 57 |
void selectProgram(std::string name);
|
| 58 |
|
| 59 |
OutputList getOutputDescriptors() const;
|
| 60 |
|
| 61 |
bool initialise(size_t channels, size_t stepSize, size_t blockSize);
|
| 62 |
void reset();
|
| 63 |
|
| 64 |
FeatureSet process(const float *const *inputBuffers, |
| 65 |
Vamp::RealTime timestamp); |
| 66 |
|
| 67 |
FeatureSet getRemainingFeatures(); |
| 68 |
|
| 69 |
protected:
|
| 70 |
size_t m_channels; |
| 71 |
size_t m_stepSize; |
| 72 |
size_t m_blockSize; |
| 73 |
float m_fmin;
|
| 74 |
float m_fmax;
|
| 75 |
int m_vflen;
|
| 76 |
|
| 77 |
int m_binFrom;
|
| 78 |
int m_binTo;
|
| 79 |
int m_bins; // count of "interesting" bins, those returned in m_cepOutput |
| 80 |
|
| 81 |
typedef std::vector<NoteHypothesis> Hypotheses;
|
| 82 |
Hypotheses m_possible; |
| 83 |
NoteHypothesis m_good; |
| 84 |
|
| 85 |
void addFeaturesFrom(NoteHypothesis h, FeatureSet &fs);
|
| 86 |
|
| 87 |
void filter(const double *in, double *out); |
| 88 |
double cubicInterpolate(const double[4], double); |
| 89 |
double findInterpolatedPeak(const double *in, int maxbin); |
| 90 |
}; |
| 91 |
|
| 92 |
#endif
|