blob: 4d0877a27e5ad1eb4faf6584420e9f2d62df4962 [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 {
Matthew Sloyan0bc74e92022-05-10 13:21:01 +0100105 /* Ensure there are no results leftover from previous inference when running all. */
106 results.clear();
107
Michael Levit06fcf752022-01-12 11:53:46 +0200108 /* Strings for presentation/logging. */
109 std::string str_inf{"Running inference... "};
110
Richard Burtonef904972022-04-27 17:24:36 +0100111 const uint8_t* currImage = get_img_array(ctx.Get<uint32_t>("imgIndex"));
Michael Levit06fcf752022-01-12 11:53:46 +0200112
Richard Burtonef904972022-04-27 17:24:36 +0100113 auto dstPtr = static_cast<uint8_t*>(inputTensor->data.uint8);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000114 const size_t copySz = inputTensor->bytes < IMAGE_DATA_SIZE ?
115 inputTensor->bytes : IMAGE_DATA_SIZE;
Michael Levit06fcf752022-01-12 11:53:46 +0200116
Richard Burtonef904972022-04-27 17:24:36 +0100117 /* Run the pre-processing, inference and post-processing. */
118 if (!preProcess.DoPreProcess(currImage, copySz)) {
119 printf_err("Pre-processing failed.");
120 return false;
121 }
Michael Levit06fcf752022-01-12 11:53:46 +0200122
Isabella Gottardie76a6912022-02-16 10:42:32 +0000123 /* Display image on the LCD. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100124 hal_lcd_display_image(
Richard Burtonef904972022-04-27 17:24:36 +0100125 (channelsImageDisplayed == 3) ? currImage : dstPtr,
126 inputImgCols, inputImgRows, channelsImageDisplayed,
Michael Levit06fcf752022-01-12 11:53:46 +0200127 dataPsnImgStartX, dataPsnImgStartY, dataPsnImgDownscaleFactor);
128
Michael Levit06fcf752022-01-12 11:53:46 +0200129 /* Display message on the LCD - inference running. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100130 hal_lcd_display_text(str_inf.c_str(), str_inf.size(),
Richard Burtonef904972022-04-27 17:24:36 +0100131 dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200132
133 /* Run inference over this image. */
134 info("Running inference on image %" PRIu32 " => %s\n", ctx.Get<uint32_t>("imgIndex"),
135 get_filename(ctx.Get<uint32_t>("imgIndex")));
136
137 if (!RunInference(model, profiler)) {
Richard Burtonef904972022-04-27 17:24:36 +0100138 printf_err("Inference failed.");
139 return false;
140 }
141
142 if (!postProcess.DoPostProcess()) {
143 printf_err("Post-processing failed.");
Michael Levit06fcf752022-01-12 11:53:46 +0200144 return false;
145 }
146
147 /* Erase. */
148 str_inf = std::string(str_inf.size(), ' ');
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100149 hal_lcd_display_text(str_inf.c_str(), str_inf.size(),
Richard Burtonef904972022-04-27 17:24:36 +0100150 dataPsnTxtInfStartX, dataPsnTxtInfStartY, false);
Michael Levit06fcf752022-01-12 11:53:46 +0200151
Richard Burton9c549902022-02-15 16:39:18 +0000152 /* Draw boxes. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100153 DrawDetectionBoxes(results, dataPsnImgStartX, dataPsnImgStartY, dataPsnImgDownscaleFactor);
Michael Levit06fcf752022-01-12 11:53:46 +0200154
Michael Levit06fcf752022-01-12 11:53:46 +0200155#if VERIFY_TEST_OUTPUT
Richard Burtonef904972022-04-27 17:24:36 +0100156 DumpTensor(modelOutput0);
157 DumpTensor(modelOutput1);
Michael Levit06fcf752022-01-12 11:53:46 +0200158#endif /* VERIFY_TEST_OUTPUT */
159
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100160 if (!PresentInferenceResult(results)) {
Michael Levit06fcf752022-01-12 11:53:46 +0200161 return false;
162 }
163
164 profiler.PrintProfilingResult();
165
166 IncrementAppCtxIfmIdx(ctx,"imgIndex");
167
Richard Burtonef904972022-04-27 17:24:36 +0100168 } while (runAll && ctx.Get<uint32_t>("imgIndex") != initialImgIdx);
Michael Levit06fcf752022-01-12 11:53:46 +0200169
170 return true;
171 }
172
Richard Burtonef904972022-04-27 17:24:36 +0100173 static bool PresentInferenceResult(const std::vector<object_detection::DetectionResult>& results)
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000174 {
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100175 hal_lcd_set_text_color(COLOR_GREEN);
Isabella Gottardi3107aa22022-01-27 16:39:37 +0000176
177 /* If profiling is enabled, and the time is valid. */
178 info("Final results:\n");
179 info("Total number of inferences: 1\n");
180
181 for (uint32_t i = 0; i < results.size(); ++i) {
182 info("%" PRIu32 ") (%f) -> %s {x=%d,y=%d,w=%d,h=%d}\n", i,
183 results[i].m_normalisedVal, "Detection box:",
184 results[i].m_x0, results[i].m_y0, results[i].m_w, results[i].m_h );
185 }
186
187 return true;
188 }
189
Richard Burtonef904972022-04-27 17:24:36 +0100190 static void DrawDetectionBoxes(const std::vector<object_detection::DetectionResult>& results,
Richard Burton9c549902022-02-15 16:39:18 +0000191 uint32_t imgStartX,
192 uint32_t imgStartY,
193 uint32_t imgDownscaleFactor)
194 {
195 uint32_t lineThickness = 1;
196
197 for (const auto& result: results) {
198 /* Top line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100199 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000200 imgStartY + result.m_y0/imgDownscaleFactor,
201 result.m_w/imgDownscaleFactor, lineThickness, COLOR_GREEN);
202 /* Bot line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100203 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000204 imgStartY + (result.m_y0 + result.m_h)/imgDownscaleFactor - lineThickness,
205 result.m_w/imgDownscaleFactor, lineThickness, COLOR_GREEN);
206
207 /* Left line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100208 hal_lcd_display_box(imgStartX + result.m_x0/imgDownscaleFactor,
Richard Burton9c549902022-02-15 16:39:18 +0000209 imgStartY + result.m_y0/imgDownscaleFactor,
210 lineThickness, result.m_h/imgDownscaleFactor, COLOR_GREEN);
211 /* Right line. */
Kshitij Sisodia68fdd112022-04-06 13:03:20 +0100212 hal_lcd_display_box(imgStartX + (result.m_x0 + result.m_w)/imgDownscaleFactor - lineThickness,
Richard Burton9c549902022-02-15 16:39:18 +0000213 imgStartY + result.m_y0/imgDownscaleFactor,
214 lineThickness, result.m_h/imgDownscaleFactor, COLOR_GREEN);
215 }
216 }
217
Michael Levit06fcf752022-01-12 11:53:46 +0200218} /* namespace app */
219} /* namespace arm */