aboutsummaryrefslogtreecommitdiff
path: root/tests/TfLiteResNetV2-Armnn
diff options
context:
space:
mode:
authorFinnWilliamsArm <Finn.Williams@arm.com>2019-05-22 14:50:55 +0100
committerNarumol Prangnawarat <narumol.prangnawarat@arm.com>2019-05-27 16:27:36 +0000
commitaf8b72d3a97baa0c86583b03321e8a8d3f4bc2aa (patch)
tree3b4d86842399842b852e593c3bcf131d86d3ae20 /tests/TfLiteResNetV2-Armnn
parent43aec5886449c1b024b740fd6f4500e827bde221 (diff)
downloadarmnn-af8b72d3a97baa0c86583b03321e8a8d3f4bc2aa.tar.gz
IVGCVSW-3129 Image pre-processing fix for TFLite
* Resized images for quantized models are now statically cast to uint8 instead of quantized * Removed optional quantization parameters from ImagePreprocessor constructor * Changed mean and scale for TFLite models Signed-off-by: FinnWilliamsArm <Finn.Williams@arm.com> Change-Id: Id5ffdf77f3614d10c417e769bd8ffc4a4c07308b
Diffstat (limited to 'tests/TfLiteResNetV2-Armnn')
-rw-r--r--tests/TfLiteResNetV2-Armnn/TfLiteResNetV2-Armnn.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/TfLiteResNetV2-Armnn/TfLiteResNetV2-Armnn.cpp b/tests/TfLiteResNetV2-Armnn/TfLiteResNetV2-Armnn.cpp
index 36fc72cdf4..1e2ffbf568 100644
--- a/tests/TfLiteResNetV2-Armnn/TfLiteResNetV2-Armnn.cpp
+++ b/tests/TfLiteResNetV2-Armnn/TfLiteResNetV2-Armnn.cpp
@@ -28,7 +28,6 @@ int main(int argc, char* argv[])
using DatabaseType = ImagePreprocessor<DataType>;
using ParserType = armnnTfLiteParser::ITfLiteParser;
using ModelType = InferenceModel<ParserType, DataType>;
-
// Coverity fix: ClassifierInferenceTestMain() may throw uncaught exceptions.
retVal = armnn::test::ClassifierInferenceTestMain<DatabaseType,
ParserType>(
@@ -43,7 +42,9 @@ int main(int argc, char* argv[])
dataDir,
299,
299,
- imageSet);
+ imageSet,
+ 127.5f,
+ {0.5f,0.5f,0.5f});
},
&inputTensorShape);
}