summaryrefslogtreecommitdiff
path: root/tests/use_case
diff options
context:
space:
mode:
Diffstat (limited to 'tests/use_case')
-rw-r--r--tests/use_case/img_class/InferenceTestMobilenetV2.cc4
-rw-r--r--tests/use_case/object_detection/InferenceTestYoloFastest.cc4
-rw-r--r--tests/use_case/vww/InferenceVisualWakeWordModelTests.cc4
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/use_case/img_class/InferenceTestMobilenetV2.cc b/tests/use_case/img_class/InferenceTestMobilenetV2.cc
index 294215f..7e7508b 100644
--- a/tests/use_case/img_class/InferenceTestMobilenetV2.cc
+++ b/tests/use_case/img_class/InferenceTestMobilenetV2.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -34,7 +34,7 @@ bool RunInference(arm::app::Model& model, const int8_t imageData[])
memcpy(inputTensor->data.data, imageData, copySz);
if(model.IsDataSigned()){
- convertImgIoInt8(inputTensor->data.data, copySz);
+ arm::app::image::ConvertImgToInt8(inputTensor->data.data, copySz);
}
return model.RunInference();
diff --git a/tests/use_case/object_detection/InferenceTestYoloFastest.cc b/tests/use_case/object_detection/InferenceTestYoloFastest.cc
index d9cabbd..b3bd408 100644
--- a/tests/use_case/object_detection/InferenceTestYoloFastest.cc
+++ b/tests/use_case/object_detection/InferenceTestYoloFastest.cc
@@ -66,10 +66,10 @@ bool RunInference(arm::app::Model& model, const uint8_t imageData[])
const size_t copySz = inputTensor->bytes < IMAGE_DATA_SIZE ?
inputTensor->bytes : IMAGE_DATA_SIZE;
- image::RgbToGrayscale(imageData,inputTensor->data.uint8,copySz);
+ arm::app::image::RgbToGrayscale(imageData,inputTensor->data.uint8,copySz);
if(model.IsDataSigned()){
- convertImgIoInt8(inputTensor->data.data, copySz);
+ arm::app::image::ConvertImgToInt8(inputTensor->data.data, copySz);
}
return model.RunInference();
diff --git a/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc b/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
index 04dce0d..194099f 100644
--- a/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
+++ b/tests/use_case/vww/InferenceVisualWakeWordModelTests.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -34,7 +34,7 @@ bool RunInference(arm::app::Model& model, const int8_t* imageData)
memcpy(inputTensor->data.data, imageData, copySz);
if(model.IsDataSigned()){
- convertImgIoInt8(inputTensor->data.data, copySz);
+ arm::app::image::ConvertImgToInt8(inputTensor->data.data, copySz);
}
return model.RunInference();