Chris@37
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@37
|
2
|
Chris@37
|
3 /*
|
Chris@37
|
4 Vamp feature extraction plugin using the MATCH audio alignment
|
Chris@37
|
5 algorithm.
|
Chris@37
|
6
|
Chris@37
|
7 Centre for Digital Music, Queen Mary, University of London.
|
Chris@37
|
8 This file copyright 2007 Simon Dixon, Chris Cannam and QMUL.
|
Chris@37
|
9
|
Chris@37
|
10 This program is free software; you can redistribute it and/or
|
Chris@37
|
11 modify it under the terms of the GNU General Public License as
|
Chris@37
|
12 published by the Free Software Foundation; either version 2 of the
|
Chris@37
|
13 License, or (at your option) any later version. See the file
|
Chris@37
|
14 COPYING included with this distribution for more information.
|
Chris@37
|
15 */
|
Chris@37
|
16
|
Chris@37
|
17 #ifndef FEATURE_EXTRACTOR_H
|
Chris@37
|
18 #define FEATURE_EXTRACTOR_H
|
Chris@37
|
19
|
Chris@37
|
20 #include <vector>
|
Chris@37
|
21
|
Chris@37
|
22 /**
|
Chris@37
|
23 * Convert frequency-domain audio frames into features suitable for
|
Chris@37
|
24 * MATCH alignment calculation. The default feature is a warping of
|
Chris@37
|
25 * the frequency data to map higher frequencies into a linear scale. A
|
Chris@37
|
26 * chroma mapping is also available.
|
Chris@37
|
27 *
|
Chris@103
|
28 * Note that FeatureExtractor may maintain internal frame-to-frame
|
Chris@103
|
29 * state: use one FeatureExtractor per audio source, and construct a
|
Chris@103
|
30 * new one for each new source.
|
Chris@37
|
31 */
|
Chris@37
|
32 class FeatureExtractor
|
Chris@37
|
33 {
|
Chris@37
|
34 public:
|
Chris@37
|
35 struct Parameters {
|
Chris@37
|
36
|
Chris@37
|
37 Parameters(float rate_, int fftSize_) :
|
Chris@37
|
38 sampleRate(rate_),
|
Chris@37
|
39 useChromaFrequencyMap(false),
|
Chris@103
|
40 fftSize(fftSize_)
|
Chris@37
|
41 {}
|
Chris@37
|
42
|
Chris@37
|
43 /** Sample rate of audio */
|
Chris@37
|
44 float sampleRate;
|
Chris@37
|
45
|
Chris@37
|
46 /** Flag indicating whether to use a chroma frequency map (12
|
Chris@37
|
47 * bins) instead of the default warped spectrogram */
|
Chris@37
|
48 bool useChromaFrequencyMap;
|
Chris@37
|
49
|
Chris@37
|
50 /** Spacing of audio frames (determines the amount of overlap or
|
Chris@37
|
51 * skip between frames). This value is expressed in
|
Chris@37
|
52 * seconds. */
|
Chris@37
|
53 double hopTime;
|
Chris@37
|
54
|
Chris@37
|
55 /** Size of an FFT frame in samples. Note that the data passed
|
Chris@37
|
56 * in is already in the frequency domain, so this expresses
|
Chris@37
|
57 * the size of the frame that the caller will be providing. */
|
Chris@37
|
58 int fftSize;
|
Chris@37
|
59 };
|
Chris@37
|
60
|
Chris@37
|
61 /**
|
Chris@37
|
62 * Construct a FeatureExtractor with the given parameters.
|
Chris@37
|
63 *
|
Chris@37
|
64 * Note that FeatureExtractor maintains internal frame-to-frame
|
Chris@37
|
65 * state: use one FeatureExtractor per audio source, and construct
|
Chris@37
|
66 * a new one for each new source.
|
Chris@37
|
67 */
|
Chris@37
|
68 FeatureExtractor(Parameters params);
|
Chris@37
|
69
|
Chris@37
|
70 /**
|
Chris@37
|
71 * Return the feature vector size that will be returned from process().
|
Chris@37
|
72 */
|
Chris@37
|
73 int getFeatureSize() const { return m_featureSize; }
|
Chris@74
|
74
|
Chris@74
|
75 /**
|
Chris@74
|
76 * Return the feature vector size that would be returned from
|
Chris@74
|
77 * process() with these parameters.
|
Chris@74
|
78 */
|
Chris@74
|
79 static int getFeatureSizeFor(Parameters params);
|
Chris@37
|
80
|
Chris@37
|
81 /**
|
Chris@37
|
82 * Process one frequency-domain audio frame (provided as real &
|
Chris@37
|
83 * imaginary components from the FFT output). Return a feature
|
Chris@38
|
84 * vector of size given by getFeatureSize(). Input vectors must
|
Chris@38
|
85 * have at least params.fftSize/2+1 elements each.
|
Chris@37
|
86 *
|
Chris@37
|
87 * Operates by mapping the frequency bins into a part-linear
|
Chris@103
|
88 * part-logarithmic array, unless useChromaFrequencyMap is true in
|
Chris@103
|
89 * which case they are mapped into chroma bins.
|
Chris@37
|
90 */
|
Chris@37
|
91 std::vector<double> process(const std::vector<double> &real,
|
Chris@37
|
92 const std::vector<double> &imag);
|
Chris@37
|
93
|
Chris@74
|
94 /**
|
Chris@74
|
95 * Process one frequency-domain audio frame, provided as a single
|
Chris@74
|
96 * array of alternating real and imaginary components. Input array
|
Chris@74
|
97 * must have at least 2 * (params.fftSize/2 + 1) elements.
|
Chris@74
|
98 *
|
Chris@74
|
99 * Operates by mapping the frequency bins into a part-linear
|
Chris@103
|
100 * part-logarithmic array, unless useChromaFrequencyMap is true in
|
Chris@103
|
101 * which case they are mapped into chroma bins.
|
Chris@74
|
102 */
|
Chris@74
|
103 std::vector<double> process(const float *carray);
|
Chris@74
|
104
|
Chris@37
|
105 protected:
|
Chris@37
|
106 /** Make either standard or chroma map, depending on m_params */
|
Chris@37
|
107 void makeFreqMap();
|
Chris@37
|
108
|
Chris@37
|
109 /** Creates a map of FFT frequency bins to comparison bins. Where
|
Chris@37
|
110 * the spacing of FFT bins is less than 0.5 semitones, the
|
Chris@37
|
111 * mapping is one to one. Where the spacing is greater than 0.5
|
Chris@37
|
112 * semitones, the FFT energy is mapped into semitone-wide
|
Chris@37
|
113 * bins. No scaling is performed; that is the energy is summed
|
Chris@37
|
114 * into the comparison bins. */
|
Chris@37
|
115 void makeStandardFrequencyMap();
|
Chris@37
|
116
|
Chris@37
|
117 /** Creates a map of FFT frequency bins to semitone chroma bins. */
|
Chris@37
|
118 void makeChromaFrequencyMap();
|
Chris@37
|
119
|
Chris@37
|
120 /** Configuration parameters */
|
Chris@37
|
121 Parameters m_params;
|
Chris@37
|
122
|
Chris@37
|
123 /** A mapping function for mapping FFT bins to final frequency
|
Chris@37
|
124 * bins. The mapping is linear (1-1) until the resolution
|
Chris@37
|
125 * reaches 2 points per semitone, then logarithmic with a
|
Chris@37
|
126 * semitone resolution. e.g. for 44.1kHz sampling rate and
|
Chris@37
|
127 * fftSize of 2048 (46ms), bin spacing is 21.5Hz, which is mapped
|
Chris@37
|
128 * linearly for bins 0-34 (0 to 732Hz), and logarithmically for
|
Chris@37
|
129 * the remaining bins (midi notes 79 to 127, bins 35 to 83),
|
Chris@37
|
130 * where all energy above note 127 is mapped into the final
|
Chris@37
|
131 * bin. */
|
Chris@37
|
132 std::vector<int> m_freqMap;
|
Chris@37
|
133
|
Chris@37
|
134 /** The size of a returned feature. */
|
Chris@37
|
135 int m_featureSize;
|
Chris@37
|
136 };
|
Chris@37
|
137
|
Chris@37
|
138 #endif
|
Chris@37
|
139
|