blob: 6def2dedc93146d32b2f70cb468a85ff15d55a1f [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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/CL/functions/CLHOGMultiDetection.h"
25
26#include "arm_compute/core/CL/OpenCL.h"
27#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/runtime/CL/CLArray.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31#include "arm_compute/runtime/CL/CLTensor.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010032#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
34using namespace arm_compute;
35
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010036CLHOGMultiDetection::CLHOGMultiDetection() // NOLINT
37 : _gradient_kernel(),
38 _orient_bin_kernel(),
39 _block_norm_kernel(),
40 _hog_detect_kernel(),
41 _non_maxima_kernel(),
42 _hog_space(),
43 _hog_norm_space(),
44 _detection_windows(),
45 _mag(),
46 _phase(),
47 _non_maxima_suppression(false),
48 _num_orient_bin_kernel(0),
49 _num_block_norm_kernel(0),
50 _num_hog_detect_kernel(0)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051{
52}
53
54void CLHOGMultiDetection::configure(ICLTensor *input, const ICLMultiHOG *multi_hog, ICLDetectionWindowArray *detection_windows, ICLSize2DArray *detection_window_strides, BorderMode border_mode,
55 uint8_t constant_border_value, float threshold, bool non_maxima_suppression, float min_distance)
56{
57 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
58 ARM_COMPUTE_ERROR_ON_INVALID_MULTI_HOG(multi_hog);
59 ARM_COMPUTE_ERROR_ON(nullptr == detection_windows);
60 ARM_COMPUTE_ERROR_ON(detection_window_strides->num_values() != multi_hog->num_models());
61
62 const size_t width = input->info()->dimension(Window::DimX);
63 const size_t height = input->info()->dimension(Window::DimY);
64 const TensorShape &shape_img = input->info()->tensor_shape();
65 const size_t num_models = multi_hog->num_models();
66 PhaseType phase_type = multi_hog->model(0)->info()->phase_type();
67
68 size_t prev_num_bins = multi_hog->model(0)->info()->num_bins();
69 Size2D prev_cell_size = multi_hog->model(0)->info()->cell_size();
70 Size2D prev_block_size = multi_hog->model(0)->info()->block_size();
71 Size2D prev_block_stride = multi_hog->model(0)->info()->block_stride();
72
73 /* Check if CLHOGOrientationBinningKernel and CLHOGBlockNormalizationKernel kernels can be skipped for a specific HOG data-object
74 *
75 * 1) CLHOGOrientationBinningKernel and CLHOGBlockNormalizationKernel are skipped if the cell size and the number of bins don't change.
76 * Since "multi_hog" is sorted,it is enough to check the HOG descriptors at level "ith" and level "(i-1)th
77 * 2) CLHOGBlockNormalizationKernel is skipped if the cell size, the number of bins and block size do not change.
78 * Since "multi_hog" is sorted,it is enough to check the HOG descriptors at level "ith" and level "(i-1)th
79 *
80 * @note Since the orientation binning and block normalization kernels can be skipped, we need to keep track of the input to process for each kernel
81 * with "input_orient_bin", "input_hog_detect" and "input_block_norm"
82 */
83 std::vector<size_t> input_orient_bin;
84 std::vector<size_t> input_hog_detect;
85 std::vector<std::pair<size_t, size_t>> input_block_norm;
86
87 input_orient_bin.push_back(0);
88 input_hog_detect.push_back(0);
89 input_block_norm.emplace_back(0, 0);
90
91 for(size_t i = 1; i < num_models; ++i)
92 {
93 size_t cur_num_bins = multi_hog->model(i)->info()->num_bins();
94 Size2D cur_cell_size = multi_hog->model(i)->info()->cell_size();
95 Size2D cur_block_size = multi_hog->model(i)->info()->block_size();
96 Size2D cur_block_stride = multi_hog->model(i)->info()->block_stride();
97
98 if((cur_num_bins != prev_num_bins) || (cur_cell_size.width != prev_cell_size.width) || (cur_cell_size.height != prev_cell_size.height))
99 {
100 prev_num_bins = cur_num_bins;
101 prev_cell_size = cur_cell_size;
102 prev_block_size = cur_block_size;
103 prev_block_stride = cur_block_stride;
104
105 // Compute orientation binning and block normalization kernels. Update input to process
106 input_orient_bin.push_back(i);
107 input_block_norm.emplace_back(i, input_orient_bin.size() - 1);
108 }
109 else if((cur_block_size.width != prev_block_size.width) || (cur_block_size.height != prev_block_size.height) || (cur_block_stride.width != prev_block_stride.width)
110 || (cur_block_stride.height != prev_block_stride.height))
111 {
112 prev_block_size = cur_block_size;
113 prev_block_stride = cur_block_stride;
114
115 // Compute block normalization kernel. Update input to process
116 input_block_norm.emplace_back(i, input_orient_bin.size() - 1);
117 }
118
119 // Update input to process for hog detector kernel
120 input_hog_detect.push_back(input_block_norm.size() - 1);
121 }
122
123 _detection_windows = detection_windows;
124 _non_maxima_suppression = non_maxima_suppression;
125 _num_orient_bin_kernel = input_orient_bin.size(); // Number of CLHOGOrientationBinningKernel kernels to compute
126 _num_block_norm_kernel = input_block_norm.size(); // Number of CLHOGBlockNormalizationKernel kernels to compute
127 _num_hog_detect_kernel = input_hog_detect.size(); // Number of CLHOGDetector functions to compute
128
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100129 _orient_bin_kernel = arm_compute::support::cpp14::make_unique<CLHOGOrientationBinningKernel[]>(_num_orient_bin_kernel);
130 _block_norm_kernel = arm_compute::support::cpp14::make_unique<CLHOGBlockNormalizationKernel[]>(_num_block_norm_kernel);
131 _hog_detect_kernel = arm_compute::support::cpp14::make_unique<CLHOGDetector[]>(_num_hog_detect_kernel);
132 _non_maxima_kernel = arm_compute::support::cpp14::make_unique<CPPDetectionWindowNonMaximaSuppressionKernel>();
133 _hog_space = arm_compute::support::cpp14::make_unique<CLTensor[]>(_num_orient_bin_kernel);
134 _hog_norm_space = arm_compute::support::cpp14::make_unique<CLTensor[]>(_num_block_norm_kernel);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135
136 // Allocate tensors for magnitude and phase
137 TensorInfo info_mag(shape_img, Format::S16);
138 _mag.allocator()->init(info_mag);
139
140 TensorInfo info_phase(shape_img, Format::U8);
141 _phase.allocator()->init(info_phase);
142
143 // Initialise gradient kernel
144 _gradient_kernel.configure(input, &_mag, &_phase, phase_type, border_mode, constant_border_value);
145
146 // Configure NETensor for the HOG space and orientation binning kernel
147 for(size_t i = 0; i < _num_orient_bin_kernel; ++i)
148 {
149 const size_t idx_multi_hog = input_orient_bin[i];
150
151 // Get the corresponding cell size and number of bins
152 const Size2D &cell = multi_hog->model(idx_multi_hog)->info()->cell_size();
153 const size_t num_bins = multi_hog->model(idx_multi_hog)->info()->num_bins();
154
155 // Calculate number of cells along the x and y directions for the hog_space
156 const size_t num_cells_x = width / cell.width;
157 const size_t num_cells_y = height / cell.height;
158
159 // TensorShape of hog space
160 TensorShape shape_hog_space = input->info()->tensor_shape();
161 shape_hog_space.set(Window::DimX, num_cells_x);
162 shape_hog_space.set(Window::DimY, num_cells_y);
163
164 // Allocate HOG space
165 TensorInfo info_space(shape_hog_space, num_bins, DataType::F32);
166 _hog_space[i].allocator()->init(info_space);
167
168 // Initialise orientation binning kernel
169 _orient_bin_kernel[i].configure(&_mag, &_phase, _hog_space.get() + i, multi_hog->model(idx_multi_hog)->info());
170 }
171
172 // Configure CLTensor for the normalized HOG space and block normalization kernel
173 for(size_t i = 0; i < _num_block_norm_kernel; ++i)
174 {
175 const size_t idx_multi_hog = input_block_norm[i].first;
176 const size_t idx_orient_bin = input_block_norm[i].second;
177
178 // Allocate normalized HOG space
179 TensorInfo tensor_info(*(multi_hog->model(idx_multi_hog)->info()), width, height);
180 _hog_norm_space[i].allocator()->init(tensor_info);
181
182 // Initialize block normalization kernel
183 _block_norm_kernel[i].configure(_hog_space.get() + idx_orient_bin, _hog_norm_space.get() + i, multi_hog->model(idx_multi_hog)->info());
184 }
185
186 detection_window_strides->map(CLScheduler::get().queue(), true);
187
188 // Configure HOG detector kernel
189 for(size_t i = 0; i < _num_hog_detect_kernel; ++i)
190 {
191 const size_t idx_block_norm = input_hog_detect[i];
192
193 _hog_detect_kernel[i].configure(_hog_norm_space.get() + idx_block_norm, multi_hog->cl_model(i), detection_windows, detection_window_strides->at(i), threshold, i);
194 }
195
196 detection_window_strides->unmap(CLScheduler::get().queue());
197
198 // Configure non maxima suppression kernel
199 _non_maxima_kernel->configure(_detection_windows, min_distance);
200
201 // Allocate intermediate tensors
202 _mag.allocator()->allocate();
203 _phase.allocator()->allocate();
204
205 for(size_t i = 0; i < _num_orient_bin_kernel; ++i)
206 {
207 _hog_space[i].allocator()->allocate();
208 }
209
210 for(size_t i = 0; i < _num_block_norm_kernel; ++i)
211 {
212 _hog_norm_space[i].allocator()->allocate();
213 }
214}
215
216void CLHOGMultiDetection::run()
217{
218 ARM_COMPUTE_ERROR_ON_MSG(_detection_windows == nullptr, "Unconfigured function");
219
220 // Reset detection window
221 _detection_windows->clear();
222
223 // Run gradient
224 _gradient_kernel.run();
225
226 // Run orientation binning kernel
227 for(size_t i = 0; i < _num_orient_bin_kernel; ++i)
228 {
229 CLScheduler::get().enqueue(*(_orient_bin_kernel.get() + i), false);
230 }
231
232 // Run block normalization kernel
233 for(size_t i = 0; i < _num_block_norm_kernel; ++i)
234 {
235 CLScheduler::get().enqueue(*(_block_norm_kernel.get() + i), false);
236 }
237
238 // Run HOG detector kernel
239 for(size_t i = 0; i < _num_hog_detect_kernel; ++i)
240 {
241 _hog_detect_kernel[i].run();
242 }
243
244 // Run non-maxima suppression kernel if enabled
245 if(_non_maxima_suppression)
246 {
247 // Map detection windows array before computing non maxima suppression
248 _detection_windows->map(CLScheduler::get().queue(), true);
249 _non_maxima_kernel->run(_non_maxima_kernel->window());
250 _detection_windows->unmap(CLScheduler::get().queue());
251 }
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +0100252}