aboutsummaryrefslogtreecommitdiff
path: root/tests/InferenceTestImage.hpp
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-28 09:59:44 +0100
commita723ec5d2ac35948efb5dfd0c121a1a89cb977b7 (patch)
treee0a101fbb7ba41cd50e30a1e0ce31529404175ed /tests/InferenceTestImage.hpp
parent7f2c35a82ec11be50b3478bd15207320bbf3bd57 (diff)
downloadarmnn-a723ec5d2ac35948efb5dfd0c121a1a89cb977b7.tar.gz
IVGCVSW-3129 Image pre-processing fix for TFLitev19.05
* 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/InferenceTestImage.hpp')
-rw-r--r--tests/InferenceTestImage.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/InferenceTestImage.hpp b/tests/InferenceTestImage.hpp
index 59f4cc7073..643d060919 100644
--- a/tests/InferenceTestImage.hpp
+++ b/tests/InferenceTestImage.hpp
@@ -92,7 +92,8 @@ public:
const armnn::CheckLocation& location,
const ResizingMethods meth = ResizingMethods::STB,
const std::array<float, 3>& mean = {{0.0, 0.0, 0.0}},
- const std::array<float, 3>& stddev = {{1.0, 1.0, 1.0}});
+ const std::array<float, 3>& stddev = {{1.0, 1.0, 1.0}},
+ const float scale = 255.0f);
void Write(WriteFormat format, const char* filePath) const;