blob: 93301878bea3fbbb6f52f4ce691974e0a240dab1 [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 */
17#include "UseCaseHandler.hpp"
Michael Levit06fcf752022-01-12 11:53:46 +020018#include "DetectorPostProcessing.hpp"
Richard Burtonef904972022-04-27 17:24:36 +010019#include "DetectorPreProcessing.hpp"
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000020#include "InputFiles.hpp"
21#include "UseCaseCommonUtils.hpp"
22#include "YoloFastestModel.hpp"
Michael Levit06fcf752022-01-12 11:53:46 +020023#include "hal.h"
alexander31ae9f02022-02-10 16:15:54 +000024#include "log_macros.h"
Michael Levit06fcf752022-01-12 11:53:46 +020025
alexander31ae9f02022-02-10 16:15:54 +000026#include <cinttypes>
Michael Levit06fcf752022-01-12 11:53:46 +020027
Michael Levit06fcf752022-01-12 11:53:46 +020028namespace arm {
29namespace app {
30
Isabella Gottardi3107aa22022-01-27 16:39:37 +000031 /**
32 * @brief Presents inference results along using the data presentation
33 * object.
Isabella Gottardi3107aa22022-01-27 16:39:37 +000034 * @param[in] results Vector of detection results to be displayed.
35 * @return true if successful, false otherwise.
36 **/
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000037 static bool
38 PresentInferenceResult(const std::vector<object_detection::DetectionResult>& results);
Richard Burton9c549902022-02-15 16:39:18 +000039
40 /**
41 * @brief Draw boxes directly on the LCD for all detected objects.
Richard Burton9c549902022-02-15 16:39:18 +000042 * @param[in] results Vector of detection results to be displayed.
43 * @param[in] imageStartX X coordinate where the image starts on the LCD.
44 * @param[in] imageStartY Y coordinate where the image starts on the LCD.
45 * @param[in] imgDownscaleFactor How much image has been downscaled on LCD.
46 **/
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000047 static void DrawDetectionBoxes(const std::vector<object_detection::DetectionResult>& results,
48 uint32_t imgStartX,
49 uint32_t imgStartY,
50 uint32_t imgDownscaleFactor);
Michael Levit06fcf752022-01-12 11:53:46 +020051
Richard Burtonef904972022-04-27 17:24:36 +010052 /* Object detection inference handler. */
Michael Levit06fcf752022-01-12 11:53:46 +020053 bool ObjectDetectionHandler(ApplicationContext& ctx, uint32_t imgIndex, bool runAll)
54 {
Michael Levit06fcf752022-01-12 11:53:46 +020055 auto& profiler = ctx.Get<Profiler&>("profiler");
56
57 constexpr uint32_t dataPsnImgDownscaleFactor = 1;
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000058 constexpr uint32_t dataPsnImgStartX = 10;
59 constexpr uint32_t dataPsnImgStartY = 35;
Michael Levit06fcf752022-01-12 11:53:46 +020060
Richard Burton71f282e2022-12-01 12:31:23 +000061 constexpr uint32_t dataPsnTxtInfStartX = 20;
62 constexpr uint32_t dataPsnTxtInfStartY = 28;
Michael Levit06fcf752022-01-12 11:53:46 +020063
Kshitij Sisodia68fdd112022-04-06 13:03:20 +010064 hal_lcd_clear(COLOR_BLACK);
Michael Levit06fcf752022-01-12 11:53:46 +020065
66 auto& model = ctx.Get<Model&>("model");
Isabella Gottardi3107aa22022-01-27 16:39:37 +000067
Michael Levit06fcf752022-01-12 11:53:46 +020068 /* If the request has a valid size, set the image index. */
69 if (imgIndex < NUMBER_OF_FILES) {
70 if (!SetAppCtxIfmIdx(ctx, imgIndex, "imgIndex")) {
71 return false;
72 }
73 }
74 if (!model.IsInited()) {
75 printf_err("Model is not initialised! Terminating processing.\n");
76 return false;
77 }
78
Richard Burtonef904972022-04-27 17:24:36 +010079 auto initialImgIdx = ctx.Get<uint32_t>("imgIndex");
Michael Levit06fcf752022-01-12 11:53:46 +020080
Kshitij Sisodia2ea46232022-12-19 16:37:33 +000081 TfLiteTensor* inputTensor = model.GetInputTensor(0);
Richard Burtonef904972022-04-27 17:24:36 +010082 TfLiteTensor* outputTensor0 = model.GetOutputTensor(0);
83 TfLiteTensor* outputTensor1 = model.GetOutputTensor(1);
Michael Levit06fcf752022-01-12 11:53:46 +020084
85 if (!inputTensor->dims) {
86 printf_err("Invalid input tensor dims\n");
87 return false;
88 } else if (inputTensor->dims->size < 3) {
89 printf_err("Input tensor dimension should be >= 3\n");
90 return false;
91 }
92
93 TfLiteIntArray* inputShape = model.GetInputShape(0);
94
Richard Burtonef904972022-04-27 17:24:36 +010095 const int inputImgCols = inputShape->data[YoloFastestModel::ms_inputColsIdx];
96 const int inputImgRows = inputShape->data[YoloFastestModel::ms_inputRowsIdx];
Michael Levit06fcf752022-01-12 11:53:46 +020097
Richard Burtonef904972022-04-27 17:24:36 +010098 /* Set up pre and post-processing. */
99 DetectorPreProcess preProcess = DetectorPreProcess(inputTensor, true, model.IsDataSigned());
Michael Levit06fcf752022-01-12 11:53:46 +0200100
Richard Burtonef904972022-04-27 17:24:36 +0100101 std::vector<object_detection::DetectionResult> results;
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000102 const object_detection::PostProcessParams postProcessParams{
103 inputImgRows,
104 inputImgCols,
105 object_detection::originalImageSize,
106 object_detection::anchor1,
107 object_detection::anchor2};
108 DetectorPostProcess postProcess =
109 DetectorPostProcess(outputTensor0, outputTensor1, results, postProcessParams);
Michael Levit06fcf752022-01-12 11:53:46 +0200110 do {
Matthew Sloyan0bc74e92022-05-10 13:21:01 +0100111 /* Ensure there are no results leftover from previous inference when running all. */
112 results.clear();
113
Michael Levit06fcf752022-01-12 11:53:46 +0200114 /* Strings for presentation/logging. */
115 std::string str_inf{"Running inference... "};
116
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000117 const uint8_t* currImage = GetImgArray(ctx.Get<uint32_t>("imgIndex"));
Michael Levit06fcf752022-01-12 11:53:46 +0200118
Richard Burtonef904972022-04-27 17:24:36 +0100119 auto dstPtr = static_cast<uint8_t*>(inputTensor->data.uint8);
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000120 const size_t copySz =
121 inputTensor->bytes < IMAGE_DATA_SIZE ? inputTensor->bytes : IMAGE_DATA_SIZE;
Michael Levit06fcf752022-01-12 11:53:46 +0200122
Richard Burtonef904972022-04-27 17:24:36 +0100123 /* Run the pre-processing, inference and post-processing. */
124 if (!preProcess.DoPreProcess(currImage, copySz)) {
125 printf_err("Pre-processing failed.");
126 return false;
127 }
Michael Levit06fcf752022-01-12 11:53:46 +0200128
Isabella Gottardie76a6912022-02-16 10:42:32 +0000129 /* Display image on the LCD. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100130 hal_lcd_display_image(
Liam Barry213a5432022-05-09 17:06:19 +0100131 (arm::app::object_detection::channelsImageDisplayed == 3) ? currImage : dstPtr,
132 inputImgCols,
133 inputImgRows,
134 arm::app::object_detection::channelsImageDisplayed,
135 dataPsnImgStartX,
136 dataPsnImgStartY,
137 dataPsnImgDownscaleFactor);
Michael Levit06fcf752022-01-12 11:53:46 +0200138
Michael Levit06fcf752022-01-12 11:53:46 +0200139 /* Display message on the LCD - inference running. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000140 hal_lcd_display_text(
141 str_inf.c_str(), str_inf.size(), dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200142
143 /* Run inference over this image. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000144 info("Running inference on image %" PRIu32 " => %s\n",
145 ctx.Get<uint32_t>("imgIndex"),
146 GetFilename(ctx.Get<uint32_t>("imgIndex")));
Michael Levit06fcf752022-01-12 11:53:46 +0200147
148 if (!RunInference(model, profiler)) {
Richard Burtonef904972022-04-27 17:24:36 +0100149 printf_err("Inference failed.");
150 return false;
151 }
152
153 if (!postProcess.DoPostProcess()) {
154 printf_err("Post-processing failed.");
Michael Levit06fcf752022-01-12 11:53:46 +0200155 return false;
156 }
157
158 /* Erase. */
159 str_inf = std::string(str_inf.size(), ' ');
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000160 hal_lcd_display_text(
161 str_inf.c_str(), str_inf.size(), dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200162
Richard Burton9c549902022-02-15 16:39:18 +0000163 /* Draw boxes. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000164 DrawDetectionBoxes(
165 results, dataPsnImgStartX, dataPsnImgStartY, dataPsnImgDownscaleFactor);
Michael Levit06fcf752022-01-12 11:53:46 +0200166
Michael Levit06fcf752022-01-12 11:53:46 +0200167#if VERIFY_TEST_OUTPUT
Richard Burtonef904972022-04-27 17:24:36 +0100168 DumpTensor(modelOutput0);
169 DumpTensor(modelOutput1);
Michael Levit06fcf752022-01-12 11:53:46 +0200170#endif /* VERIFY_TEST_OUTPUT */
171
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100172 if (!PresentInferenceResult(results)) {
Michael Levit06fcf752022-01-12 11:53:46 +0200173 return false;
174 }
175
176 profiler.PrintProfilingResult();
177
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000178 IncrementAppCtxIfmIdx(ctx, "imgIndex");
Michael Levit06fcf752022-01-12 11:53:46 +0200179
Richard Burtonef904972022-04-27 17:24:36 +0100180 } while (runAll && ctx.Get<uint32_t>("imgIndex") != initialImgIdx);
Michael Levit06fcf752022-01-12 11:53:46 +0200181
182 return true;
183 }
184
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000185 static bool
186 PresentInferenceResult(const std::vector<object_detection::DetectionResult>& results)
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000187 {
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100188 hal_lcd_set_text_color(COLOR_GREEN);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000189
190 /* If profiling is enabled, and the time is valid. */
191 info("Final results:\n");
192 info("Total number of inferences: 1\n");
193
194 for (uint32_t i = 0; i < results.size(); ++i) {
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000195 info("%" PRIu32 ") (%f) -> %s {x=%d,y=%d,w=%d,h=%d}\n",
196 i,
197 results[i].m_normalisedVal,
198 "Detection box:",
199 results[i].m_x0,
200 results[i].m_y0,
201 results[i].m_w,
202 results[i].m_h);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000203 }
204
205 return true;
206 }
207
Richard Burtonef904972022-04-27 17:24:36 +0100208 static void DrawDetectionBoxes(const std::vector<object_detection::DetectionResult>& results,
Richard Burton9c549902022-02-15 16:39:18 +0000209 uint32_t imgStartX,
210 uint32_t imgStartY,
211 uint32_t imgDownscaleFactor)
212 {
213 uint32_t lineThickness = 1;
214
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000215 for (const auto& result : results) {
Richard Burton9c549902022-02-15 16:39:18 +0000216 /* Top line. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000217 hal_lcd_display_box(imgStartX + result.m_x0 / imgDownscaleFactor,
218 imgStartY + result.m_y0 / imgDownscaleFactor,
219 result.m_w / imgDownscaleFactor,
220 lineThickness,
221 COLOR_GREEN);
Richard Burton9c549902022-02-15 16:39:18 +0000222 /* Bot line. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000223 hal_lcd_display_box(imgStartX + result.m_x0 / imgDownscaleFactor,
224 imgStartY + (result.m_y0 + result.m_h) / imgDownscaleFactor -
225 lineThickness,
226 result.m_w / imgDownscaleFactor,
227 lineThickness,
228 COLOR_GREEN);
Richard Burton9c549902022-02-15 16:39:18 +0000229
230 /* Left line. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000231 hal_lcd_display_box(imgStartX + result.m_x0 / imgDownscaleFactor,
232 imgStartY + result.m_y0 / imgDownscaleFactor,
233 lineThickness,
234 result.m_h / imgDownscaleFactor,
235 COLOR_GREEN);
Richard Burton9c549902022-02-15 16:39:18 +0000236 /* Right line. */
Kshitij Sisodia2ea46232022-12-19 16:37:33 +0000237 hal_lcd_display_box(imgStartX + (result.m_x0 + result.m_w) / imgDownscaleFactor -
238 lineThickness,
239 imgStartY + result.m_y0 / imgDownscaleFactor,
240 lineThickness,
241 result.m_h / imgDownscaleFactor,
242 COLOR_GREEN);
Richard Burton9c549902022-02-15 16:39:18 +0000243 }
244 }
245
Michael Levit06fcf752022-01-12 11:53:46 +0200246} /* namespace app */
247} /* namespace arm */