blob: 332d1999e6332ef0b9db357c240acc3eb2f46b73 [file] [log] [blame]
Michael Levit06fcf752022-01-12 11:53:46 +02001/*
2 * Copyright (c) 2022 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
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"
18#include "InputFiles.hpp"
19#include "YoloFastestModel.hpp"
20#include "UseCaseCommonUtils.hpp"
Michael Levit06fcf752022-01-12 11:53:46 +020021#include "DetectorPostProcessing.hpp"
Richard Burtonef904972022-04-27 17:24:36 +010022#include "DetectorPreProcessing.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 **/
Richard Burtonef904972022-04-27 17:24:36 +010037 static bool PresentInferenceResult(const std::vector<object_detection::DetectionResult>& results);
Richard Burton9c549902022-02-15 16:39:18 +000038
39 /**
40 * @brief Draw boxes directly on the LCD for all detected objects.
Richard Burton9c549902022-02-15 16:39:18 +000041 * @param[in] results Vector of detection results to be displayed.
42 * @param[in] imageStartX X coordinate where the image starts on the LCD.
43 * @param[in] imageStartY Y coordinate where the image starts on the LCD.
44 * @param[in] imgDownscaleFactor How much image has been downscaled on LCD.
45 **/
Kshitij Sisodia68fdd112022-04-06 13:03:20 +010046 static void DrawDetectionBoxes(
Richard Burtonef904972022-04-27 17:24:36 +010047 const std::vector<object_detection::DetectionResult>& results,
Kshitij Sisodia68fdd112022-04-06 13:03:20 +010048 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;
58 constexpr uint32_t dataPsnImgStartX = 10;
59 constexpr uint32_t dataPsnImgStartY = 35;
60
61 constexpr uint32_t dataPsnTxtInfStartX = 150;
62 constexpr uint32_t dataPsnTxtInfStartY = 40;
63
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
81 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;
102 DetectorPostProcess postProcess = DetectorPostProcess(outputTensor0, outputTensor1,
103 results, inputImgRows, inputImgCols);
Michael Levit06fcf752022-01-12 11:53:46 +0200104 do {
105 /* Strings for presentation/logging. */
106 std::string str_inf{"Running inference... "};
107
Richard Burtonef904972022-04-27 17:24:36 +0100108 const uint8_t* currImage = get_img_array(ctx.Get<uint32_t>("imgIndex"));
Michael Levit06fcf752022-01-12 11:53:46 +0200109
Richard Burtonef904972022-04-27 17:24:36 +0100110 auto dstPtr = static_cast<uint8_t*>(inputTensor->data.uint8);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000111 const size_t copySz = inputTensor->bytes < IMAGE_DATA_SIZE ?
112 inputTensor->bytes : IMAGE_DATA_SIZE;
Michael Levit06fcf752022-01-12 11:53:46 +0200113
Richard Burtonef904972022-04-27 17:24:36 +0100114 /* Run the pre-processing, inference and post-processing. */
115 if (!preProcess.DoPreProcess(currImage, copySz)) {
116 printf_err("Pre-processing failed.");
117 return false;
118 }
Michael Levit06fcf752022-01-12 11:53:46 +0200119
Isabella Gottardie76a6912022-02-16 10:42:32 +0000120 /* Display image on the LCD. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100121 hal_lcd_display_image(
Richard Burtonef904972022-04-27 17:24:36 +0100122 (channelsImageDisplayed == 3) ? currImage : dstPtr,
123 inputImgCols, inputImgRows, channelsImageDisplayed,
Michael Levit06fcf752022-01-12 11:53:46 +0200124 dataPsnImgStartX, dataPsnImgStartY, dataPsnImgDownscaleFactor);
125
Michael Levit06fcf752022-01-12 11:53:46 +0200126 /* Display message on the LCD - inference running. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100127 hal_lcd_display_text(str_inf.c_str(), str_inf.size(),
Richard Burtonef904972022-04-27 17:24:36 +0100128 dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200129
130 /* Run inference over this image. */
131 info("Running inference on image %" PRIu32 " => %s\n", ctx.Get<uint32_t>("imgIndex"),
132 get_filename(ctx.Get<uint32_t>("imgIndex")));
133
134 if (!RunInference(model, profiler)) {
Richard Burtonef904972022-04-27 17:24:36 +0100135 printf_err("Inference failed.");
136 return false;
137 }
138
139 if (!postProcess.DoPostProcess()) {
140 printf_err("Post-processing failed.");
Michael Levit06fcf752022-01-12 11:53:46 +0200141 return false;
142 }
143
144 /* Erase. */
145 str_inf = std::string(str_inf.size(), ' ');
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100146 hal_lcd_display_text(str_inf.c_str(), str_inf.size(),
Richard Burtonef904972022-04-27 17:24:36 +0100147 dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200148
Richard Burton9c549902022-02-15 16:39:18 +0000149 /* Draw boxes. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100150 DrawDetectionBoxes(results, dataPsnImgStartX, dataPsnImgStartY, dataPsnImgDownscaleFactor);
Michael Levit06fcf752022-01-12 11:53:46 +0200151
Michael Levit06fcf752022-01-12 11:53:46 +0200152#if VERIFY_TEST_OUTPUT
Richard Burtonef904972022-04-27 17:24:36 +0100153 DumpTensor(modelOutput0);
154 DumpTensor(modelOutput1);
Michael Levit06fcf752022-01-12 11:53:46 +0200155#endif /* VERIFY_TEST_OUTPUT */
156
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100157 if (!PresentInferenceResult(results)) {
Michael Levit06fcf752022-01-12 11:53:46 +0200158 return false;
159 }
160
161 profiler.PrintProfilingResult();
162
163 IncrementAppCtxIfmIdx(ctx,"imgIndex");
164
Richard Burtonef904972022-04-27 17:24:36 +0100165 } while (runAll && ctx.Get<uint32_t>("imgIndex") != initialImgIdx);
Michael Levit06fcf752022-01-12 11:53:46 +0200166
167 return true;
168 }
169
Richard Burtonef904972022-04-27 17:24:36 +0100170 static bool PresentInferenceResult(const std::vector<object_detection::DetectionResult>& results)
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000171 {
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100172 hal_lcd_set_text_color(COLOR_GREEN);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000173
174 /* If profiling is enabled, and the time is valid. */
175 info("Final results:\n");
176 info("Total number of inferences: 1\n");
177
178 for (uint32_t i = 0; i < results.size(); ++i) {
179 info("%" PRIu32 ") (%f) -> %s {x=%d,y=%d,w=%d,h=%d}\n", i,
180 results[i].m_normalisedVal, "Detection box:",
181 results[i].m_x0, results[i].m_y0, results[i].m_w, results[i].m_h );
182 }
183
184 return true;
185 }
186
Richard Burtonef904972022-04-27 17:24:36 +0100187 static void DrawDetectionBoxes(const std::vector<object_detection::DetectionResult>& results,
Richard Burton9c549902022-02-15 16:39:18 +0000188 uint32_t imgStartX,
189 uint32_t imgStartY,
190 uint32_t imgDownscaleFactor)
191 {
192 uint32_t lineThickness = 1;
193
194 for (const auto& result: results) {
195 /* Top line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100196 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000197 imgStartY + result.m_y0/imgDownscaleFactor,
198 result.m_w/imgDownscaleFactor, lineThickness, COLOR_GREEN);
199 /* Bot line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100200 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000201 imgStartY + (result.m_y0 + result.m_h)/imgDownscaleFactor - lineThickness,
202 result.m_w/imgDownscaleFactor, lineThickness, COLOR_GREEN);
203
204 /* Left line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100205 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000206 imgStartY + result.m_y0/imgDownscaleFactor,
207 lineThickness, result.m_h/imgDownscaleFactor, COLOR_GREEN);
208 /* Right line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100209 hal_lcd_display_box(imgStartX + (result.m_x0 + result.m_w)/imgDownscaleFactor - lineThickness,
Richard Burton9c549902022-02-15 16:39:18 +0000210 imgStartY + result.m_y0/imgDownscaleFactor,
211 lineThickness, result.m_h/imgDownscaleFactor, COLOR_GREEN);
212 }
213 }
214
Michael Levit06fcf752022-01-12 11:53:46 +0200215} /* namespace app */
216} /* namespace arm */