blob: 21fa6690eae02bd150ca91c3d1b700efd0edd8d1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/CLHOGDescriptor.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/HOGInfo.h"
28#include "arm_compute/core/Size2D.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
31
32using namespace arm_compute;
33
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010034CLHOGDescriptor::CLHOGDescriptor(std::shared_ptr<IMemoryManager> memory_manager)
35 : _memory_group(std::move(memory_manager)), _gradient(), _orient_bin(), _block_norm(), _mag(), _phase(), _hog_space()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036{
37}
38
39void CLHOGDescriptor::configure(ICLTensor *input, ICLTensor *output, const IHOG *hog, BorderMode border_mode, uint8_t constant_border_value)
40{
Manuel Bottini2b84be52020-04-08 10:15:51 +010041 configure(CLKernelLibrary::get().get_compile_context(), input, output, hog, border_mode, constant_border_value);
42}
43
44void CLHOGDescriptor::configure(const CLCompileContext &compile_context, ICLTensor *input, ICLTensor *output, const IHOG *hog, BorderMode border_mode, uint8_t constant_border_value)
45{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
47 ARM_COMPUTE_ERROR_ON(nullptr == output);
48 ARM_COMPUTE_ERROR_ON(nullptr == hog);
49
50 const HOGInfo *hog_info = hog->info();
51 const size_t width = input->info()->dimension(Window::DimX);
52 const size_t height = input->info()->dimension(Window::DimY);
53 const size_t num_bins = hog_info->num_bins();
54
55 Size2D cell_size = hog_info->cell_size();
56
57 // Calculate number of cells along the x and y directions for the hog_space
58 const size_t num_cells_x = width / cell_size.width;
59 const size_t num_cells_y = height / cell_size.height;
60
61 // TensorShape of the input image
62 const TensorShape &shape_img = input->info()->tensor_shape();
63
64 // TensorShape of the hog space
65 TensorShape shape_hog_space = input->info()->tensor_shape();
66 shape_hog_space.set(Window::DimX, num_cells_x);
67 shape_hog_space.set(Window::DimY, num_cells_y);
68
69 // Intitialize tensors for magnitude, phase and hog space
70 TensorInfo info_mag(shape_img, Format::S16);
71 _mag.allocator()->init(info_mag);
72
73 TensorInfo info_phase(shape_img, Format::U8);
74 _phase.allocator()->init(info_phase);
75
76 TensorInfo info_space(shape_hog_space, num_bins, DataType::F32);
77 _hog_space.allocator()->init(info_space);
78
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010079 // Manage intermediate buffers
80 _memory_group.manage(&_mag);
81 _memory_group.manage(&_phase);
82
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 // Initialise gradient kernel
Manuel Bottini2b84be52020-04-08 10:15:51 +010084 _gradient.configure(compile_context, input, &_mag, &_phase, hog_info->phase_type(), border_mode, constant_border_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010086 // Manage intermediate buffers
87 _memory_group.manage(&_hog_space);
88
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 // Initialise orientation binning kernel
Manuel Bottini2b84be52020-04-08 10:15:51 +010090 _orient_bin.configure(compile_context, &_mag, &_phase, &_hog_space, hog->info());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091
92 // Initialize HOG norm kernel
Manuel Bottini2b84be52020-04-08 10:15:51 +010093 _block_norm.configure(compile_context, &_hog_space, output, hog->info());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010094
95 // Allocate intermediate tensors
96 _mag.allocator()->allocate();
97 _phase.allocator()->allocate();
98 _hog_space.allocator()->allocate();
99}
100
101void CLHOGDescriptor::run()
102{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100103 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100104
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105 // Run gradient
106 _gradient.run();
107
108 // Run orientation binning
109 CLScheduler::get().enqueue(_orient_bin, false);
110
111 // Run block normalization
112 CLScheduler::get().enqueue(_block_norm);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113}