79 lines
2.6 KiB
C++
79 lines
2.6 KiB
C++
/* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
// Basic class for computing MFCCs from spectrogram slices.
|
|
|
|
#ifndef TENSORFLOW_LITE_KERNELS_INTERNAL_MFCC_H_
|
|
#define TENSORFLOW_LITE_KERNELS_INTERNAL_MFCC_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "tensorflow/lite/kernels/internal/mfcc_dct.h"
|
|
#include "tensorflow/lite/kernels/internal/mfcc_mel_filterbank.h"
|
|
|
|
namespace tflite {
|
|
namespace internal {
|
|
|
|
class Mfcc {
|
|
public:
|
|
Mfcc();
|
|
bool Initialize(int input_length, double input_sample_rate);
|
|
|
|
// Input is a single squared-magnitude spectrogram frame. The input spectrum
|
|
// is converted to linear magnitude and weighted into bands using a
|
|
// triangular mel filterbank, and a discrete cosine transform (DCT) of the
|
|
// values is taken. Output is populated with the lowest dct_coefficient_count
|
|
// of these values.
|
|
void Compute(const std::vector<double>& spectrogram_frame,
|
|
std::vector<double>* output) const;
|
|
|
|
void set_upper_frequency_limit(double upper_frequency_limit) {
|
|
// CHECK(!initialized_) << "Set frequency limits before calling
|
|
// Initialize.";
|
|
upper_frequency_limit_ = upper_frequency_limit;
|
|
}
|
|
|
|
void set_lower_frequency_limit(double lower_frequency_limit) {
|
|
// CHECK(!initialized_) << "Set frequency limits before calling
|
|
// Initialize.";
|
|
lower_frequency_limit_ = lower_frequency_limit;
|
|
}
|
|
|
|
void set_filterbank_channel_count(int filterbank_channel_count) {
|
|
/// CHECK(!initialized_) << "Set channel count before calling Initialize.";
|
|
filterbank_channel_count_ = filterbank_channel_count;
|
|
}
|
|
|
|
void set_dct_coefficient_count(int dct_coefficient_count) {
|
|
// CHECK(!initialized_) << "Set coefficient count before calling
|
|
// Initialize.";
|
|
dct_coefficient_count_ = dct_coefficient_count;
|
|
}
|
|
|
|
private:
|
|
MfccMelFilterbank mel_filterbank_;
|
|
MfccDct dct_;
|
|
bool initialized_;
|
|
double lower_frequency_limit_;
|
|
double upper_frequency_limit_;
|
|
int filterbank_channel_count_;
|
|
int dct_coefficient_count_;
|
|
};
|
|
|
|
} // namespace internal
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_KERNELS_INTERNAL_MFCC_H_
|