aboutsummaryrefslogtreecommitdiff
path: root/samples/SpeechRecognition/test/PreprocessTest.cpp
diff options
context:
space:
mode:
authorGeorge Gekov <george.gekov@arm.com>2021-08-16 11:32:10 +0100
committerJim Flynn <jim.flynn@arm.com>2022-02-05 19:49:06 +0000
commit23c26277086c78704a17f0dae86da947816320c0 (patch)
tree88b02fd1fae3130256d059251788a7ef68d2831f /samples/SpeechRecognition/test/PreprocessTest.cpp
parent922b912fd2d462bac0809bac5669310ad1506310 (diff)
downloadarmnn-23c26277086c78704a17f0dae86da947816320c0.tar.gz
MLECO-2079 Adding the C++ KWS example
Signed-off-by: Eanna O Cathain <eanna.ocathain@arm.com> Change-Id: I81899bbfaada32f478c2e2fc6441eabb94d8d0fc
Diffstat (limited to 'samples/SpeechRecognition/test/PreprocessTest.cpp')
-rw-r--r--samples/SpeechRecognition/test/PreprocessTest.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/samples/SpeechRecognition/test/PreprocessTest.cpp b/samples/SpeechRecognition/test/PreprocessTest.cpp
index 2b98831fda..f1127470fd 100644
--- a/samples/SpeechRecognition/test/PreprocessTest.cpp
+++ b/samples/SpeechRecognition/test/PreprocessTest.cpp
@@ -6,8 +6,8 @@
#include <catch.hpp>
#include <limits>
-#include "Preprocess.hpp"
#include "DataStructures.hpp"
+#include "Wav2LetterPreprocessor.hpp"
void PopulateTestWavVector(std::vector<int16_t>& vec)
{
@@ -51,9 +51,10 @@ TEST_CASE("Preprocessing calculation INT8")
/* Populate with dummy input */
PopulateTestWavVector(testWav1);
- MfccParams mfccParams(sampFreq, 128, 0, 8000, numMfccFeats, frameLenSamples, false, numMfccVectors);
+ MfccParams mfccParams(sampFreq, 128, 0, 8000, numMfccFeats,
+ frameLenSamples, false, numMfccVectors);
- MFCC mfccInst = MFCC(mfccParams);
+ std::unique_ptr<Wav2LetterMFCC> mfccInst = std::make_unique<Wav2LetterMFCC>(mfccParams);
std::vector<float> fullAudioData;
@@ -65,7 +66,7 @@ TEST_CASE("Preprocessing calculation INT8")
}
}
- Preprocess prep(frameLenSamples, windowStride, mfccInst);
+ Wav2LetterPreprocessor prep(frameLenSamples, windowStride, std::move(mfccInst));
std::vector<int8_t> outputBuffer(outputBufferSize);