aboutsummaryrefslogtreecommitdiff
path: root/samples/common/src/Audio/MFCC.cpp
blob: 911c32b26ee9005e4c32d11cb7dcc56266845e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "MFCC.hpp"
#include "MathUtils.hpp"

#include <cfloat>
#include <cinttypes>
#include <cstring>

MfccParams::MfccParams(
        const float samplingFreq,
        const int numFbankBins,
        const float melLoFreq,
        const float melHiFreq,
        const int numMfccFeats,
        const int frameLen,
        const bool useHtkMethod,
        const int numMfccVectors):
        m_samplingFreq(samplingFreq),
        m_numFbankBins(numFbankBins),
        m_melLoFreq(melLoFreq),
        m_melHiFreq(melHiFreq),
        m_numMfccFeatures(numMfccFeats),
        m_frameLen(frameLen),
        m_numMfccVectors(numMfccVectors),
        /* Smallest power of 2 >= frame length. */
        m_frameLenPadded(pow(2, ceil((log(frameLen)/log(2))))),
        m_useHtkMethod(useHtkMethod)
{}

std::string MfccParams::Str()
{
    char strC[1024];
    snprintf(strC, sizeof(strC) - 1, "\n   \
            \n\t Sampling frequency:         %f\
            \n\t Number of filter banks:     %u\
            \n\t Mel frequency limit (low):  %f\
            \n\t Mel frequency limit (high): %f\
            \n\t Number of MFCC features:    %u\
            \n\t Frame length:               %u\
            \n\t Padded frame length:        %u\
            \n\t Using HTK for Mel scale:    %s\n",
             this->m_samplingFreq, this->m_numFbankBins, this->m_melLoFreq,
             this->m_melHiFreq, this->m_numMfccFeatures, this->m_frameLen,
             this->m_frameLenPadded, this->m_useHtkMethod ? "yes" : "no");
    return std::string{strC};
}

MFCC::MFCC(const MfccParams& params):
    m_params(params),
    m_filterBankInitialised(false)
{
    this->m_buffer = std::vector<float>(
            this->m_params.m_frameLenPadded, 0.0);
    this->m_frame = std::vector<float>(
            this->m_params.m_frameLenPadded, 0.0);
    this->m_melEnergies = std::vector<float>(
            this->m_params.m_numFbankBins, 0.0);

    this->m_windowFunc = std::vector<float>(this->m_params.m_frameLen);
    const auto multiplier = static_cast<float>(2 * M_PI / this->m_params.m_frameLen);

    /* Create window function. */
    for (size_t i = 0; i < this->m_params.m_frameLen; i++) 
    {
        this->m_windowFunc[i] = (0.5 - (0.5 * cosf(static_cast<float>(i) * multiplier)));
    }

}

void MFCC::Init()
{
    this->InitMelFilterBank();
}

float MFCC::MelScale(const float freq, const bool useHTKMethod)
{
    if (useHTKMethod) 
    {
        return 1127.0f * logf (1.0f + freq / 700.0f);
    } 
    else 
    {
        /* Slaney formula for mel scale. */
        float mel = freq / ms_freqStep;

        if (freq >= ms_minLogHz) 
        {
            mel = ms_minLogMel + logf(freq / ms_minLogHz) / ms_logStep;
        }
        return mel;
    }
}

float MFCC::InverseMelScale(const float melFreq, const bool useHTKMethod)
{
    if (useHTKMethod) {
        return 700.0f * (expf (melFreq / 1127.0f) - 1.0f);
    } 
    else 
    {
        /* Slaney formula for mel scale. */
        float freq = ms_freqStep * melFreq;

        if (melFreq >= ms_minLogMel) 
        {
            freq = ms_minLogHz * expf(ms_logStep * (melFreq - ms_minLogMel));
        }
        return freq;
    }
}


bool MFCC::ApplyMelFilterBank(
        std::vector<float>&                 fftVec,
        std::vector<std::vector<float>>&    melFilterBank,
        std::vector<uint32_t>&              filterBankFilterFirst,
        std::vector<uint32_t>&              filterBankFilterLast,
        std::vector<float>&                 melEnergies)
{
    const size_t numBanks = melEnergies.size();

    if (numBanks != filterBankFilterFirst.size() ||
        numBanks != filterBankFilterLast.size()) 
    {
        printf("unexpected filter bank lengths\n");
        return false;
    }

    for (size_t bin = 0; bin < numBanks; ++bin) 
    {
        auto filterBankIter = melFilterBank[bin].begin();
        auto end = melFilterBank[bin].end();
        float melEnergy = FLT_MIN;  /* Avoid log of zero at later stages */
        const uint32_t firstIndex = filterBankFilterFirst[bin];
        const uint32_t lastIndex = std::min<uint32_t>(filterBankFilterLast[bin], fftVec.size() - 1);

        for (uint32_t i = firstIndex; i <= lastIndex && filterBankIter != end; i++) 
        {
            float energyRep = sqrt(fftVec[i]);
            melEnergy += (*filterBankIter++ * energyRep);
        }

        melEnergies[bin] = melEnergy;
    }

    return true;
}

void MFCC::ConvertToLogarithmicScale(std::vector<float>& melEnergies)
{
    for (float& melEnergy : melEnergies) 
    {
        melEnergy = logf(melEnergy);
    }
}

void MFCC::ConvertToPowerSpectrum()
{
    const uint32_t halfDim = this->m_buffer.size() / 2;

    /* Handle this special case. */
    float firstEnergy = this->m_buffer[0] * this->m_buffer[0];
    float lastEnergy = this->m_buffer[1] * this->m_buffer[1];

    MathUtils::ComplexMagnitudeSquaredF32(
            this->m_buffer.data(),
            this->m_buffer.size(),
            this->m_buffer.data(),
            this->m_buffer.size()/2);

    this->m_buffer[0] = firstEnergy;
    this->m_buffer[halfDim] = lastEnergy;
}

std::vector<float> MFCC::CreateDCTMatrix(
                            const int32_t inputLength,
                            const int32_t coefficientCount)
{
    std::vector<float> dctMatrix(inputLength * coefficientCount);

    const float normalizer = sqrtf(2.0f/inputLength);
    const float angleIncr = M_PI/inputLength;
    float angle = 0;

    for (int32_t k = 0, m = 0; k < coefficientCount; k++, m += inputLength) 
    {
        for (int32_t n = 0; n < inputLength; n++) 
        {
            dctMatrix[m + n] = normalizer * cosf((n + 0.5f) * angle);
        }
        angle += angleIncr;
    }

    return dctMatrix;
}

float MFCC::GetMelFilterBankNormaliser(
                const float&    leftMel,
                const float&    rightMel,
                const bool      useHTKMethod)
{
    /* By default, no normalisation => return 1 */
    return 1.f;
}

void MFCC::InitMelFilterBank()
{
    if (!this->IsMelFilterBankInited()) 
    {
        this->m_melFilterBank = this->CreateMelFilterBank();
        this->m_dctMatrix = this->CreateDCTMatrix(
                                this->m_params.m_numFbankBins,
                                this->m_params.m_numMfccFeatures);
        this->m_filterBankInitialised = true;
    }
}

bool MFCC::IsMelFilterBankInited() const
{
    return this->m_filterBankInitialised;
}

void MFCC::MfccComputePreFeature(const std::vector<float>& audioData)
{
    this->InitMelFilterBank();

    auto size = std::min(std::min(this->m_frame.size(), audioData.size()),
                         static_cast<size_t>(this->m_params.m_frameLen)) * sizeof(float);
    std::memcpy(this->m_frame.data(), audioData.data(), size);

    /* Apply window function to input frame. */
    for(size_t i = 0; i < this->m_params.m_frameLen; i++) 
    {
        this->m_frame[i] *= this->m_windowFunc[i];
    }

    /* Set remaining frame values to 0. */
    std::fill(this->m_frame.begin() + this->m_params.m_frameLen,this->m_frame.end(), 0);

    /* Compute FFT. */
    MathUtils::FftF32(this->m_frame, this->m_buffer);

    /* Convert to power spectrum. */
    this->ConvertToPowerSpectrum();

    /* Apply mel filterbanks. */
    if (!this->ApplyMelFilterBank(this->m_buffer,
                                  this->m_melFilterBank,
                                  this->m_filterBankFilterFirst,
                                  this->m_filterBankFilterLast,
                                  this->m_melEnergies)) 
    {
        printf("Failed to apply MEL filter banks\n");
    }

    /* Convert to logarithmic scale. */
    this->ConvertToLogarithmicScale(this->m_melEnergies);
}

std::vector<float> MFCC::MfccCompute(const std::vector<float>& audioData)
{
    this->MfccComputePreFeature(audioData);

    std::vector<float> mfccOut(this->m_params.m_numMfccFeatures);

    float * ptrMel = this->m_melEnergies.data();
    float * ptrDct = this->m_dctMatrix.data();
    float * ptrMfcc = mfccOut.data();

    /* Take DCT. Uses matrix mul. */
    for (size_t i = 0, j = 0; i < mfccOut.size();
                ++i, j += this->m_params.m_numFbankBins) 
    {
        *ptrMfcc++ = MathUtils::DotProductF32(
                ptrDct + j,
                ptrMel,
                this->m_params.m_numFbankBins);
    }
    return mfccOut;
}

std::vector<std::vector<float>> MFCC::CreateMelFilterBank()
{
    size_t numFftBins = this->m_params.m_frameLenPadded / 2;
    float fftBinWidth = static_cast<float>(this->m_params.m_samplingFreq) / this->m_params.m_frameLenPadded;

    float melLowFreq = MFCC::MelScale(this->m_params.m_melLoFreq,
                                      this->m_params.m_useHtkMethod);
    float melHighFreq = MFCC::MelScale(this->m_params.m_melHiFreq,
                                       this->m_params.m_useHtkMethod);
    float melFreqDelta = (melHighFreq - melLowFreq) / (this->m_params.m_numFbankBins + 1);

    std::vector<float> thisBin = std::vector<float>(numFftBins);
    std::vector<std::vector<float>> melFilterBank(
                                        this->m_params.m_numFbankBins);
    this->m_filterBankFilterFirst =
                    std::vector<uint32_t>(this->m_params.m_numFbankBins);
    this->m_filterBankFilterLast =
                    std::vector<uint32_t>(this->m_params.m_numFbankBins);

    for (size_t bin = 0; bin < this->m_params.m_numFbankBins; bin++) 
    {
        float leftMel = melLowFreq + bin * melFreqDelta;
        float centerMel = melLowFreq + (bin + 1) * melFreqDelta;
        float rightMel = melLowFreq + (bin + 2) * melFreqDelta;

        uint32_t firstIndex = 0;
        uint32_t lastIndex = 0;
        bool firstIndexFound = false;
        const float normaliser = this->GetMelFilterBankNormaliser(leftMel, rightMel, this->m_params.m_useHtkMethod);

        for (size_t i = 0; i < numFftBins; i++) 
        {
            float freq = (fftBinWidth * i);  /* Center freq of this fft bin. */
            float mel = MFCC::MelScale(freq, this->m_params.m_useHtkMethod);
            thisBin[i] = 0.0;

            if (mel > leftMel && mel < rightMel) 
            {
                float weight;
                if (mel <= centerMel) 
                {
                    weight = (mel - leftMel) / (centerMel - leftMel);
                } 
                else 
                {
                    weight = (rightMel - mel) / (rightMel - centerMel);
                }

                thisBin[i] = weight * normaliser;
                if (!firstIndexFound) 
                {
                    firstIndex = i;
                    firstIndexFound = true;
                }
                lastIndex = i;
            }
        }

        this->m_filterBankFilterFirst[bin] = firstIndex;
        this->m_filterBankFilterLast[bin] = lastIndex;

        /* Copy the part we care about. */
        for (uint32_t i = firstIndex; i <= lastIndex; i++) 
        {
            melFilterBank[bin].push_back(thisBin[i]);
        }
    }

    return melFilterBank;
}