blob: b3fc9c776d581bede42dbdfdfaa4ef4ed741ebcb [file] [log] [blame]
Isabella Gottardia7acb3c2019-01-08 13:48:44 +00001/*
Matthew Bentham92046462020-03-07 22:15:55 +00002 * Copyright (c) 2019-2020 ARM Limited.
Isabella Gottardia7acb3c2019-01-08 13:48:44 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/Validate.h"
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000029
30#include <cstddef>
31#include <ios>
32#include <list>
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input_box_encoding, const ITensorInfo *input_class_score, const ITensorInfo *input_anchors,
39 ITensorInfo *output_boxes, ITensorInfo *output_classes, ITensorInfo *output_scores, ITensorInfo *num_detection,
40 DetectionPostProcessLayerInfo info, const unsigned int kBatchSize, const unsigned int kNumCoordBox)
41{
42 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input_box_encoding, input_class_score, input_anchors);
Sheri Zhang95f80892020-03-16 14:31:53 +000043 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input_box_encoding, 1, DataType::F32, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
Giuseppe Rossinid9853782019-10-25 11:11:44 +010044 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input_box_encoding, input_anchors);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000045 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input_box_encoding->num_dimensions() > 3, "The location input tensor shape should be [4, N, kBatchSize].");
46 if(input_box_encoding->num_dimensions() > 2)
47 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +010048 ARM_COMPUTE_RETURN_ERROR_ON_MSG_VAR(input_box_encoding->dimension(2) != kBatchSize, "The third dimension of the input box_encoding tensor should be equal to %d.", kBatchSize);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000049 }
Michalis Spyrou7c60c992019-10-10 14:33:47 +010050 ARM_COMPUTE_RETURN_ERROR_ON_MSG_VAR(input_box_encoding->dimension(0) != kNumCoordBox, "The first dimension of the input box_encoding tensor should be equal to %d.", kNumCoordBox);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000051 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input_class_score->dimension(0) != (info.num_classes() + 1),
52 "The first dimension of the input class_prediction should be equal to the number of classes plus one.");
53
54 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input_anchors->num_dimensions() > 3, "The anchors input tensor shape should be [4, N, kBatchSize].");
55 if(input_anchors->num_dimensions() > 2)
56 {
Michalis Spyrou7c60c992019-10-10 14:33:47 +010057 ARM_COMPUTE_RETURN_ERROR_ON_MSG_VAR(input_anchors->dimension(0) != kNumCoordBox, "The first dimension of the input anchors tensor should be equal to %d.", kNumCoordBox);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000058 }
59 ARM_COMPUTE_RETURN_ERROR_ON_MSG((input_box_encoding->dimension(1) != input_class_score->dimension(1))
60 || (input_box_encoding->dimension(1) != input_anchors->dimension(1)),
61 "The second dimension of the inputs should be the same.");
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_detection->num_dimensions() > 1, "The num_detection output tensor shape should be [M].");
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG((info.iou_threshold() <= 0.0f) || (info.iou_threshold() > 1.0f), "The intersection over union should be positive and less than 1.");
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.max_classes_per_detection() <= 0, "The number of max classes per detection should be positive.");
65
66 const unsigned int num_detected_boxes = info.max_detections() * info.max_classes_per_detection();
67
68 // Validate configured outputs
69 if(output_boxes->total_size() != 0)
70 {
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output_boxes->tensor_shape(), TensorShape(4U, num_detected_boxes, 1U));
72 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_boxes, 1, DataType::F32);
73 }
74 if(output_classes->total_size() != 0)
75 {
76 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output_classes->tensor_shape(), TensorShape(num_detected_boxes, 1U));
77 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_classes, 1, DataType::F32);
78 }
79 if(output_scores->total_size() != 0)
80 {
81 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output_scores->tensor_shape(), TensorShape(num_detected_boxes, 1U));
82 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output_scores, 1, DataType::F32);
83 }
84 if(num_detection->total_size() != 0)
85 {
86 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(num_detection->tensor_shape(), TensorShape(1U));
87 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(num_detection, 1, DataType::F32);
88 }
89
90 return Status{};
91}
92
Sheri Zhang95f80892020-03-16 14:31:53 +000093inline void DecodeBoxCorner(BBox &box_centersize, BBox &anchor, Iterator &decoded_it, DetectionPostProcessLayerInfo info)
94{
95 const float half_factor = 0.5f;
96
97 // BBox is equavalent to CenterSizeEncoding [y,x,h,w]
98 const float y_center = box_centersize[0] / info.scale_value_y() * anchor[2] + anchor[0];
99 const float x_center = box_centersize[1] / info.scale_value_x() * anchor[3] + anchor[1];
100 const float half_h = half_factor * static_cast<float>(std::exp(box_centersize[2] / info.scale_value_h())) * anchor[2];
101 const float half_w = half_factor * static_cast<float>(std::exp(box_centersize[3] / info.scale_value_w())) * anchor[3];
102
103 // Box Corner encoding boxes are saved as [xmin, ymin, xmax, ymax]
104 auto decoded_ptr = reinterpret_cast<float *>(decoded_it.ptr());
105 *(decoded_ptr) = x_center - half_w; // xmin
106 *(1 + decoded_ptr) = y_center - half_h; // ymin
107 *(2 + decoded_ptr) = x_center + half_w; // xmax
108 *(3 + decoded_ptr) = y_center + half_h; // ymax
109}
110
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000111/** Decode a bbox according to a anchors and scale info.
112 *
113 * @param[in] input_box_encoding The input prior bounding boxes.
114 * @param[in] input_anchors The corresponding input variance.
115 * @param[in] info The detection informations
116 * @param[out] decoded_boxes The decoded bboxes.
117 */
118void DecodeCenterSizeBoxes(const ITensor *input_box_encoding, const ITensor *input_anchors, DetectionPostProcessLayerInfo info, Tensor *decoded_boxes)
119{
120 const QuantizationInfo &qi_box = input_box_encoding->info()->quantization_info();
121 const QuantizationInfo &qi_anchors = input_anchors->info()->quantization_info();
Sheri Zhang95f80892020-03-16 14:31:53 +0000122 BBox box_centersize{ {} };
123 BBox anchor{ {} };
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000124
125 Window win;
126 win.use_tensor_dimensions(input_box_encoding->info()->tensor_shape());
127 win.set_dimension_step(0U, 4U);
128 win.set_dimension_step(1U, 1U);
129 Iterator box_it(input_box_encoding, win);
130 Iterator anchor_it(input_anchors, win);
131 Iterator decoded_it(decoded_boxes, win);
132
Sheri Zhang95f80892020-03-16 14:31:53 +0000133 if(input_box_encoding->info()->data_type() == DataType::QASYMM8)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000134 {
Sheri Zhang95f80892020-03-16 14:31:53 +0000135 execute_window_loop(win, [&](const Coordinates &)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000136 {
137 const auto box_ptr = reinterpret_cast<const qasymm8_t *>(box_it.ptr());
138 const auto anchor_ptr = reinterpret_cast<const qasymm8_t *>(anchor_it.ptr());
139 box_centersize = BBox({ dequantize_qasymm8(*box_ptr, qi_box), dequantize_qasymm8(*(box_ptr + 1), qi_box),
140 dequantize_qasymm8(*(2 + box_ptr), qi_box), dequantize_qasymm8(*(3 + box_ptr), qi_box)
141 });
142 anchor = BBox({ dequantize_qasymm8(*anchor_ptr, qi_anchors), dequantize_qasymm8(*(anchor_ptr + 1), qi_anchors),
143 dequantize_qasymm8(*(2 + anchor_ptr), qi_anchors), dequantize_qasymm8(*(3 + anchor_ptr), qi_anchors)
144 });
Sheri Zhang95f80892020-03-16 14:31:53 +0000145 DecodeBoxCorner(box_centersize, anchor, decoded_it, info);
146 },
147 box_it, anchor_it, decoded_it);
148 }
149 else if(input_box_encoding->info()->data_type() == DataType::QASYMM8_SIGNED)
150 {
151 execute_window_loop(win, [&](const Coordinates &)
152 {
153 const auto box_ptr = reinterpret_cast<const qasymm8_signed_t *>(box_it.ptr());
154 const auto anchor_ptr = reinterpret_cast<const qasymm8_signed_t *>(anchor_it.ptr());
155 box_centersize = BBox({ dequantize_qasymm8_signed(*box_ptr, qi_box), dequantize_qasymm8_signed(*(box_ptr + 1), qi_box),
156 dequantize_qasymm8_signed(*(2 + box_ptr), qi_box), dequantize_qasymm8_signed(*(3 + box_ptr), qi_box)
157 });
158 anchor = BBox({ dequantize_qasymm8_signed(*anchor_ptr, qi_anchors), dequantize_qasymm8_signed(*(anchor_ptr + 1), qi_anchors),
159 dequantize_qasymm8_signed(*(2 + anchor_ptr), qi_anchors), dequantize_qasymm8_signed(*(3 + anchor_ptr), qi_anchors)
160 });
161 DecodeBoxCorner(box_centersize, anchor, decoded_it, info);
162 },
163 box_it, anchor_it, decoded_it);
164 }
165 else
166 {
167 execute_window_loop(win, [&](const Coordinates &)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000168 {
169 const auto box_ptr = reinterpret_cast<const float *>(box_it.ptr());
170 const auto anchor_ptr = reinterpret_cast<const float *>(anchor_it.ptr());
171 box_centersize = BBox({ *box_ptr, *(box_ptr + 1), *(2 + box_ptr), *(3 + box_ptr) });
172 anchor = BBox({ *anchor_ptr, *(anchor_ptr + 1), *(2 + anchor_ptr), *(3 + anchor_ptr) });
Sheri Zhang95f80892020-03-16 14:31:53 +0000173 DecodeBoxCorner(box_centersize, anchor, decoded_it, info);
174 },
175 box_it, anchor_it, decoded_it);
176 }
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000177}
178
179void SaveOutputs(const Tensor *decoded_boxes, const std::vector<int> &result_idx_boxes_after_nms, const std::vector<float> &result_scores_after_nms, const std::vector<int> &result_classes_after_nms,
180 std::vector<unsigned int> &sorted_indices, const unsigned int num_output, const unsigned int max_detections, ITensor *output_boxes, ITensor *output_classes, ITensor *output_scores,
181 ITensor *num_detection)
182{
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100183 // xmin,ymin,xmax,ymax -> ymin,xmin,ymax,xmax
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000184 unsigned int i = 0;
185 for(; i < num_output; ++i)
186 {
187 const unsigned int box_in_idx = result_idx_boxes_after_nms[sorted_indices[i]];
188 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(0, i)))) = *(reinterpret_cast<float *>(decoded_boxes->ptr_to_element(Coordinates(1, box_in_idx))));
189 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(1, i)))) = *(reinterpret_cast<float *>(decoded_boxes->ptr_to_element(Coordinates(0, box_in_idx))));
190 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(2, i)))) = *(reinterpret_cast<float *>(decoded_boxes->ptr_to_element(Coordinates(3, box_in_idx))));
191 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(3, i)))) = *(reinterpret_cast<float *>(decoded_boxes->ptr_to_element(Coordinates(2, box_in_idx))));
192 *(reinterpret_cast<float *>(output_classes->ptr_to_element(Coordinates(i)))) = static_cast<float>(result_classes_after_nms[sorted_indices[i]]);
193 *(reinterpret_cast<float *>(output_scores->ptr_to_element(Coordinates(i)))) = result_scores_after_nms[sorted_indices[i]];
194 }
195 for(; i < max_detections; ++i)
196 {
197 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(1, i)))) = 0.0f;
198 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(0, i)))) = 0.0f;
199 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(3, i)))) = 0.0f;
200 *(reinterpret_cast<float *>(output_boxes->ptr_to_element(Coordinates(2, i)))) = 0.0f;
201 *(reinterpret_cast<float *>(output_classes->ptr_to_element(Coordinates(i)))) = 0.0f;
202 *(reinterpret_cast<float *>(output_scores->ptr_to_element(Coordinates(i)))) = 0.0f;
203 }
204 *(reinterpret_cast<float *>(num_detection->ptr_to_element(Coordinates(0)))) = num_output;
205}
206} // namespace
207
208CPPDetectionPostProcessLayer::CPPDetectionPostProcessLayer(std::shared_ptr<IMemoryManager> memory_manager)
209 : _memory_group(std::move(memory_manager)), _nms(), _input_box_encoding(nullptr), _input_scores(nullptr), _input_anchors(nullptr), _output_boxes(nullptr), _output_classes(nullptr),
Giuseppe Rossinid9853782019-10-25 11:11:44 +0100210 _output_scores(nullptr), _num_detection(nullptr), _info(), _num_boxes(), _num_classes_with_background(), _num_max_detected_boxes(), _dequantize_scores(false), _decoded_boxes(), _decoded_scores(),
211 _selected_indices(), _class_scores(), _input_scores_to_use(nullptr)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000212{
213}
214
215void CPPDetectionPostProcessLayer::configure(const ITensor *input_box_encoding, const ITensor *input_scores, const ITensor *input_anchors,
216 ITensor *output_boxes, ITensor *output_classes, ITensor *output_scores, ITensor *num_detection, DetectionPostProcessLayerInfo info)
217{
218 ARM_COMPUTE_ERROR_ON_NULLPTR(input_box_encoding, input_scores, input_anchors, output_boxes, output_classes, output_scores);
219 _num_max_detected_boxes = info.max_detections() * info.max_classes_per_detection();
220
221 auto_init_if_empty(*output_boxes->info(), TensorInfo(TensorShape(_kNumCoordBox, _num_max_detected_boxes, _kBatchSize), 1, DataType::F32));
222 auto_init_if_empty(*output_classes->info(), TensorInfo(TensorShape(_num_max_detected_boxes, _kBatchSize), 1, DataType::F32));
223 auto_init_if_empty(*output_scores->info(), TensorInfo(TensorShape(_num_max_detected_boxes, _kBatchSize), 1, DataType::F32));
224 auto_init_if_empty(*num_detection->info(), TensorInfo(TensorShape(1U), 1, DataType::F32));
225
226 // Perform validation step
227 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input_box_encoding->info(), input_scores->info(), input_anchors->info(), output_boxes->info(), output_classes->info(), output_scores->info(),
228 num_detection->info(),
229 info, _kBatchSize, _kNumCoordBox));
230
231 _input_box_encoding = input_box_encoding;
232 _input_scores = input_scores;
233 _input_anchors = input_anchors;
234 _output_boxes = output_boxes;
235 _output_classes = output_classes;
236 _output_scores = output_scores;
237 _num_detection = num_detection;
238 _info = info;
239 _num_boxes = input_box_encoding->info()->dimension(1);
240 _num_classes_with_background = _input_scores->info()->dimension(0);
Giuseppe Rossinid9853782019-10-25 11:11:44 +0100241 _dequantize_scores = (info.dequantize_scores() && is_data_type_quantized(input_box_encoding->info()->data_type()));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000242
243 auto_init_if_empty(*_decoded_boxes.info(), TensorInfo(TensorShape(_kNumCoordBox, _input_box_encoding->info()->dimension(1), _kBatchSize), 1, DataType::F32));
244 auto_init_if_empty(*_decoded_scores.info(), TensorInfo(TensorShape(_input_scores->info()->dimension(0), _input_scores->info()->dimension(1), _kBatchSize), 1, DataType::F32));
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100245 auto_init_if_empty(*_selected_indices.info(), TensorInfo(TensorShape(info.use_regular_nms() ? info.detection_per_class() : info.max_detections()), 1, DataType::S32));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000246 const unsigned int num_classes_per_box = std::min(info.max_classes_per_detection(), info.num_classes());
247 auto_init_if_empty(*_class_scores.info(), TensorInfo(info.use_regular_nms() ? TensorShape(_num_boxes) : TensorShape(_num_boxes * num_classes_per_box), 1, DataType::F32));
248
Giuseppe Rossinid9853782019-10-25 11:11:44 +0100249 _input_scores_to_use = _dequantize_scores ? &_decoded_scores : _input_scores;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000250
251 // Manage intermediate buffers
252 _memory_group.manage(&_decoded_boxes);
253 _memory_group.manage(&_decoded_scores);
254 _memory_group.manage(&_selected_indices);
255 _memory_group.manage(&_class_scores);
256 _nms.configure(&_decoded_boxes, &_class_scores, &_selected_indices, info.use_regular_nms() ? info.detection_per_class() : info.max_detections(), info.nms_score_threshold(), info.iou_threshold());
257
258 // Allocate and reserve intermediate tensors and vectors
259 _decoded_boxes.allocator()->allocate();
260 _decoded_scores.allocator()->allocate();
261 _selected_indices.allocator()->allocate();
262 _class_scores.allocator()->allocate();
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000263}
264
265Status CPPDetectionPostProcessLayer::validate(const ITensorInfo *input_box_encoding, const ITensorInfo *input_class_score, const ITensorInfo *input_anchors,
266 ITensorInfo *output_boxes, ITensorInfo *output_classes, ITensorInfo *output_scores, ITensorInfo *num_detection, DetectionPostProcessLayerInfo info)
267{
268 constexpr unsigned int kBatchSize = 1;
269 constexpr unsigned int kNumCoordBox = 4;
270 const TensorInfo _decoded_boxes_info = TensorInfo(TensorShape(kNumCoordBox, input_box_encoding->dimension(1)), 1, DataType::F32);
271 const TensorInfo _decoded_scores_info = TensorInfo(TensorShape(input_box_encoding->dimension(1)), 1, DataType::F32);
272 const TensorInfo _selected_indices_info = TensorInfo(TensorShape(info.max_detections()), 1, DataType::S32);
273
274 ARM_COMPUTE_RETURN_ON_ERROR(CPPNonMaximumSuppression::validate(&_decoded_boxes_info, &_decoded_scores_info, &_selected_indices_info, info.max_detections(), info.nms_score_threshold(),
275 info.iou_threshold()));
276 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input_box_encoding, input_class_score, input_anchors, output_boxes, output_classes, output_scores, num_detection, info, kBatchSize, kNumCoordBox));
277
278 return Status{};
279}
280
281void CPPDetectionPostProcessLayer::run()
282{
283 const unsigned int num_classes = _info.num_classes();
284 const unsigned int max_detections = _info.max_detections();
285
286 DecodeCenterSizeBoxes(_input_box_encoding, _input_anchors, _info, &_decoded_boxes);
287
288 // Decode scores if necessary
Giuseppe Rossinid9853782019-10-25 11:11:44 +0100289 if(_dequantize_scores)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000290 {
Sheri Zhang95f80892020-03-16 14:31:53 +0000291 if(_input_box_encoding->info()->data_type() == DataType::QASYMM8)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000292 {
Sheri Zhang95f80892020-03-16 14:31:53 +0000293 for(unsigned int idx_c = 0; idx_c < _num_classes_with_background; ++idx_c)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000294 {
Sheri Zhang95f80892020-03-16 14:31:53 +0000295 for(unsigned int idx_b = 0; idx_b < _num_boxes; ++idx_b)
296 {
297 *(reinterpret_cast<float *>(_decoded_scores.ptr_to_element(Coordinates(idx_c, idx_b)))) =
298 dequantize_qasymm8(*(reinterpret_cast<qasymm8_t *>(_input_scores->ptr_to_element(Coordinates(idx_c, idx_b)))), _input_scores->info()->quantization_info());
299 }
300 }
301 }
302 else if(_input_box_encoding->info()->data_type() == DataType::QASYMM8_SIGNED)
303 {
304 for(unsigned int idx_c = 0; idx_c < _num_classes_with_background; ++idx_c)
305 {
306 for(unsigned int idx_b = 0; idx_b < _num_boxes; ++idx_b)
307 {
308 *(reinterpret_cast<float *>(_decoded_scores.ptr_to_element(Coordinates(idx_c, idx_b)))) =
309 dequantize_qasymm8_signed(*(reinterpret_cast<qasymm8_signed_t *>(_input_scores->ptr_to_element(Coordinates(idx_c, idx_b)))), _input_scores->info()->quantization_info());
310 }
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000311 }
312 }
313 }
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100314
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000315 // Regular NMS
316 if(_info.use_regular_nms())
317 {
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100318 std::vector<int> result_idx_boxes_after_nms;
319 std::vector<int> result_classes_after_nms;
320 std::vector<float> result_scores_after_nms;
321 std::vector<unsigned int> sorted_indices;
322
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000323 for(unsigned int c = 0; c < num_classes; ++c)
324 {
325 // For each boxes get scores of the boxes for the class c
326 for(unsigned int i = 0; i < _num_boxes; ++i)
327 {
328 *(reinterpret_cast<float *>(_class_scores.ptr_to_element(Coordinates(i)))) =
329 *(reinterpret_cast<float *>(_input_scores_to_use->ptr_to_element(Coordinates(c + 1, i)))); // i * _num_classes_with_background + c + 1
330 }
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100331
332 // Run Non-maxima Suppression
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000333 _nms.run();
334
335 for(unsigned int i = 0; i < _info.detection_per_class(); ++i)
336 {
337 const auto selected_index = *(reinterpret_cast<int *>(_selected_indices.ptr_to_element(Coordinates(i))));
338 if(selected_index == -1)
339 {
340 // Nms will return -1 for all the last M-elements not valid
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100341 break;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000342 }
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100343 result_idx_boxes_after_nms.emplace_back(selected_index);
344 result_scores_after_nms.emplace_back((reinterpret_cast<float *>(_class_scores.buffer()))[selected_index]);
345 result_classes_after_nms.emplace_back(c);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000346 }
347 }
348
349 // We select the max detection numbers of the highest score of all classes
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100350 const auto num_selected = result_scores_after_nms.size();
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000351 const auto num_output = std::min<unsigned int>(max_detections, num_selected);
352
353 // Sort selected indices based on result scores
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100354 sorted_indices.resize(num_selected);
355 std::iota(sorted_indices.begin(), sorted_indices.end(), 0);
356 std::partial_sort(sorted_indices.data(),
357 sorted_indices.data() + num_output,
358 sorted_indices.data() + num_selected,
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000359 [&](unsigned int first, unsigned int second)
360 {
361
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100362 return result_scores_after_nms[first] > result_scores_after_nms[second];
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000363 });
364
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100365 SaveOutputs(&_decoded_boxes, result_idx_boxes_after_nms, result_scores_after_nms, result_classes_after_nms, sorted_indices,
366 num_output, max_detections, _output_boxes, _output_classes, _output_scores, _num_detection);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000367 }
368 // Fast NMS
369 else
370 {
371 const unsigned int num_classes_per_box = std::min<unsigned int>(_info.max_classes_per_detection(), _info.num_classes());
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100372 std::vector<float> max_scores;
373 std::vector<int> box_indices;
374 std::vector<int> max_score_classes;
375
376 for(unsigned int b = 0; b < _num_boxes; ++b)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000377 {
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100378 std::vector<float> box_scores;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000379 for(unsigned int c = 0; c < num_classes; ++c)
380 {
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100381 box_scores.emplace_back(*(reinterpret_cast<float *>(_input_scores_to_use->ptr_to_element(Coordinates(c + 1, b)))));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000382 }
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100383
384 std::vector<unsigned int> max_score_indices;
385 max_score_indices.resize(_info.num_classes());
386 std::iota(max_score_indices.data(), max_score_indices.data() + _info.num_classes(), 0);
387 std::partial_sort(max_score_indices.data(),
388 max_score_indices.data() + num_classes_per_box,
389 max_score_indices.data() + num_classes,
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000390 [&](unsigned int first, unsigned int second)
391 {
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100392 return box_scores[first] > box_scores[second];
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000393 });
394
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100395 for(unsigned int i = 0; i < num_classes_per_box; ++i)
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000396 {
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100397 const float score_to_add = box_scores[max_score_indices[i]];
398 *(reinterpret_cast<float *>(_class_scores.ptr_to_element(Coordinates(b * num_classes_per_box + i)))) = score_to_add;
399 max_scores.emplace_back(score_to_add);
400 box_indices.emplace_back(b);
401 max_score_classes.emplace_back(max_score_indices[i]);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000402 }
403 }
404
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100405 // Run Non-maxima Suppression
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000406 _nms.run();
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100407 std::vector<unsigned int> selected_indices;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000408 for(unsigned int i = 0; i < max_detections; ++i)
409 {
410 // NMS returns M valid indices, the not valid tail is filled with -1
411 if(*(reinterpret_cast<int *>(_selected_indices.ptr_to_element(Coordinates(i)))) == -1)
412 {
413 // Nms will return -1 for all the last M-elements not valid
414 break;
415 }
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100416 selected_indices.emplace_back(*(reinterpret_cast<int *>(_selected_indices.ptr_to_element(Coordinates(i)))));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000417 }
418 // We select the max detection numbers of the highest score of all classes
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100419 const auto num_output = std::min<unsigned int>(_info.max_detections(), selected_indices.size());
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000420
Georgios Pinitasb94c3682019-09-27 19:07:15 +0100421 SaveOutputs(&_decoded_boxes, box_indices, max_scores, max_score_classes, selected_indices,
422 num_output, max_detections, _output_boxes, _output_classes, _output_scores, _num_detection);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000423 }
424}
Giuseppe Rossinid9853782019-10-25 11:11:44 +0100425} // namespace arm_compute