blob: b3cf37da7250ab220a2118935b6933b27476d0b6 [file] [log] [blame]
Michael Levit06fcf752022-01-12 11:53:46 +02001/*
Kshitij Sisodia2ea46232022-12-19 16:37:33 +00002 * SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates
3 * <open-source-office@arm.com> SPDX-License-Identifier: Apache-2.0
Michael Levit06fcf752022-01-12 11:53:46 +02004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
Richard Burtonec5e99b2022-10-05 11:00:37 +010017#include "BufAttributes.hpp"
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000018#include "DetectorPostProcessing.hpp"
19#include "ImageUtils.hpp"
20#include "InputFiles.hpp"
21#include "TensorFlowLiteMicro.hpp"
22#include "YoloFastestModel.hpp"
23#include "log_macros.h"
Michael Levit06fcf752022-01-12 11:53:46 +020024
Kshitij Sisodiaaa4bcb12022-05-06 09:13:03 +010025namespace arm {
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000026namespace app {
27 static uint8_t tensorArena[ACTIVATION_BUF_SZ] ACTIVATION_BUF_ATTRIBUTE;
28 namespace object_detection {
29 extern uint8_t* GetModelPointer();
30 extern size_t GetModelLen();
31 } /* namespace object_detection */
32} /* namespace app */
Kshitij Sisodiaaa4bcb12022-05-06 09:13:03 +010033} /* namespace arm */
34
Michael Levit06fcf752022-01-12 11:53:46 +020035#include <catch.hpp>
36
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000037void GetExpectedResults(
38 std::vector<std::vector<arm::app::object_detection::DetectionResult>>& expected_results)
Isabella Gottardi3107aa22022-01-27 16:39:37 +000039{
40 /* Img1
41 0) (0.999246) -> Detection box: {x=89,y=17,w=41,h=56}
42 1) (0.995367) -> Detection box: {x=27,y=81,w=48,h=53}
43 */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000044 expected_results.push_back({arm::app::object_detection::DetectionResult(0.99, 89, 17, 41, 56),
45 arm::app::object_detection::DetectionResult(0.99, 27, 81, 48, 53)});
Isabella Gottardi3107aa22022-01-27 16:39:37 +000046 /* Img2
47 0) (0.998107) -> Detection box: {x=87,y=35,w=53,h=64}
48 */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000049 expected_results.push_back({arm::app::object_detection::DetectionResult(0.99, 87, 35, 53, 64)});
Isabella Gottardi3107aa22022-01-27 16:39:37 +000050 /* Img3
51 0) (0.999244) -> Detection box: {x=105,y=73,w=58,h=66}
52 1) (0.985984) -> Detection box: {x=34,y=40,w=70,h=95}
53 */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000054 expected_results.push_back({arm::app::object_detection::DetectionResult(0.99, 105, 73, 58, 66),
55 arm::app::object_detection::DetectionResult(0.98, 34, 40, 70, 95)});
Isabella Gottardi3107aa22022-01-27 16:39:37 +000056 /* Img4
57 0) (0.993294) -> Detection box: {x=22,y=43,w=39,h=53}
58 1) (0.992021) -> Detection box: {x=63,y=60,w=38,h=45}
59 */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000060 expected_results.push_back({arm::app::object_detection::DetectionResult(0.99, 22, 43, 39, 53),
61 arm::app::object_detection::DetectionResult(0.99, 63, 60, 38, 45)});
Isabella Gottardi3107aa22022-01-27 16:39:37 +000062}
Michael Levit06fcf752022-01-12 11:53:46 +020063
64bool RunInference(arm::app::Model& model, const uint8_t imageData[])
65{
66 TfLiteTensor* inputTensor = model.GetInputTensor(0);
67 REQUIRE(inputTensor);
68
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000069 const size_t copySz =
70 inputTensor->bytes < IMAGE_DATA_SIZE ? inputTensor->bytes : IMAGE_DATA_SIZE;
Michael Levit06fcf752022-01-12 11:53:46 +020071
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000072 arm::app::image::RgbToGrayscale(imageData, inputTensor->data.uint8, copySz);
Michael Levit06fcf752022-01-12 11:53:46 +020073
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000074 if (model.IsDataSigned()) {
Richard Burtoned35a6f2022-02-14 11:55:35 +000075 arm::app::image::ConvertImgToInt8(inputTensor->data.data, copySz);
Michael Levit06fcf752022-01-12 11:53:46 +020076 }
77
78 return model.RunInference();
79}
80
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000081template <typename T>
82void TestInferenceDetectionResults(int imageIdx, arm::app::Model& model, T tolerance)
83{
Michael Levit06fcf752022-01-12 11:53:46 +020084
Isabella Gottardi3107aa22022-01-27 16:39:37 +000085 std::vector<arm::app::object_detection::DetectionResult> results;
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000086 auto image = GetImgArray(imageIdx);
Michael Levit06fcf752022-01-12 11:53:46 +020087
Isabella Gottardi3107aa22022-01-27 16:39:37 +000088 TfLiteIntArray* inputShape = model.GetInputShape(0);
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000089 auto nCols = inputShape->data[arm::app::YoloFastestModel::ms_inputColsIdx];
90 auto nRows = inputShape->data[arm::app::YoloFastestModel::ms_inputRowsIdx];
Isabella Gottardi3107aa22022-01-27 16:39:37 +000091
Michael Levit06fcf752022-01-12 11:53:46 +020092 REQUIRE(RunInference(model, image));
93
Isabella Gottardi3107aa22022-01-27 16:39:37 +000094 std::vector<TfLiteTensor*> output_arr{model.GetOutputTensor(0), model.GetOutputTensor(1)};
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000095 for (size_t i = 0; i < output_arr.size(); i++) {
Isabella Gottardi3107aa22022-01-27 16:39:37 +000096 REQUIRE(output_arr[i]);
Michael Levit06fcf752022-01-12 11:53:46 +020097 REQUIRE(tflite::GetTensorData<T>(output_arr[i]));
98 }
99
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000100 const arm::app::object_detection::PostProcessParams postProcessParams{
101 nRows,
102 nCols,
103 arm::app::object_detection::originalImageSize,
104 arm::app::object_detection::anchor1,
105 arm::app::object_detection::anchor2};
Richard Burton6f6df092022-05-17 12:52:50 +0100106 arm::app::DetectorPostProcess postp{output_arr[0], output_arr[1], results, postProcessParams};
Richard Burtonef904972022-04-27 17:24:36 +0100107 postp.DoPostProcess();
Michael Levit06fcf752022-01-12 11:53:46 +0200108
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000109 std::vector<std::vector<arm::app::object_detection::DetectionResult>> expected_results;
110 GetExpectedResults(expected_results);
111
112 /* Validate got the same number of boxes */
113 REQUIRE(results.size() == expected_results[imageIdx].size());
114
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000115 for (int i = 0; i < (int)results.size(); i++) {
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000116 /* Validate confidence and box dimensions */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000117 REQUIRE(std::abs(results[i].m_normalisedVal -
118 expected_results[imageIdx][i].m_normalisedVal) < 0.1);
119 REQUIRE(static_cast<int>(results[i].m_x0) ==
120 Approx(static_cast<int>((T)expected_results[imageIdx][i].m_x0)).epsilon(tolerance));
121 REQUIRE(static_cast<int>(results[i].m_y0) ==
122 Approx(static_cast<int>((T)expected_results[imageIdx][i].m_y0)).epsilon(tolerance));
123 REQUIRE(static_cast<int>(results[i].m_w) ==
124 Approx(static_cast<int>((T)expected_results[imageIdx][i].m_w)).epsilon(tolerance));
125 REQUIRE(static_cast<int>(results[i].m_h) ==
126 Approx(static_cast<int>((T)expected_results[imageIdx][i].m_h)).epsilon(tolerance));
Michael Levit06fcf752022-01-12 11:53:46 +0200127 }
Michael Levit06fcf752022-01-12 11:53:46 +0200128}
129
Michael Levit06fcf752022-01-12 11:53:46 +0200130TEST_CASE("Running inference with TensorFlow Lite Micro and YoloFastest", "[YoloFastest]")
131{
132 SECTION("Executing inferences sequentially")
133 {
134 arm::app::YoloFastestModel model{};
135
136 REQUIRE_FALSE(model.IsInited());
Kshitij Sisodiaaa4bcb12022-05-06 09:13:03 +0100137 REQUIRE(model.Init(arm::app::tensorArena,
Liam Barry213a5432022-05-09 17:06:19 +0100138 sizeof(arm::app::tensorArena),
139 arm::app::object_detection::GetModelPointer(),
140 arm::app::object_detection::GetModelLen()));
Michael Levit06fcf752022-01-12 11:53:46 +0200141 REQUIRE(model.IsInited());
142
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000143 for (uint32_t i = 0; i < NUMBER_OF_FILES; ++i) {
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000144 TestInferenceDetectionResults<uint8_t>(i, model, 1);
Michael Levit06fcf752022-01-12 11:53:46 +0200145 }
146 }
147
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000148 for (uint32_t i = 0; i < NUMBER_OF_FILES; ++i) {
Michael Levit06fcf752022-01-12 11:53:46 +0200149 DYNAMIC_SECTION("Executing inference with re-init")
150 {
151 arm::app::YoloFastestModel model{};
152
153 REQUIRE_FALSE(model.IsInited());
Kshitij Sisodiaaa4bcb12022-05-06 09:13:03 +0100154 REQUIRE(model.Init(arm::app::tensorArena,
Liam Barry213a5432022-05-09 17:06:19 +0100155 sizeof(arm::app::tensorArena),
156 arm::app::object_detection::GetModelPointer(),
157 arm::app::object_detection::GetModelLen()));
Michael Levit06fcf752022-01-12 11:53:46 +0200158 REQUIRE(model.IsInited());
159
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000160 TestInferenceDetectionResults<uint8_t>(i, model, 1);
Michael Levit06fcf752022-01-12 11:53:46 +0200161 }
162 }
163}