blob: 8450d5ee690dd681b08adb03282d7d0917598717 [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/CLGaussianPyramid.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/CL/kernels/CLGaussianPyramidKernel.h"
28#include "arm_compute/core/CL/kernels/CLScaleKernel.h"
29#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/PixelValue.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/core/Window.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010034#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035
36#include "arm_compute/runtime/CL/CLPyramid.h"
37#include "arm_compute/runtime/CL/CLScheduler.h"
38#include "arm_compute/runtime/CL/CLTensor.h"
39#include "arm_compute/runtime/CL/CLTensorAllocator.h"
40#include "arm_compute/runtime/CL/functions/CLGaussian5x5.h"
41
42#include <cstddef>
43
44using namespace arm_compute;
45
46CLGaussianPyramid::CLGaussianPyramid()
47 : _input(nullptr), _pyramid(nullptr), _tmp()
48{
49}
50
51CLGaussianPyramidHalf::CLGaussianPyramidHalf()
52 : _border_handler(), _horizontal_reduction(), _vertical_reduction()
53{
54}
55
56void CLGaussianPyramidHalf::configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
57{
58 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
59 ARM_COMPUTE_ERROR_ON(pyramid == nullptr);
60 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
61 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
62 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
63 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_HALF != pyramid->info()->scale());
64
65 /* Get number of pyramid levels */
66 const size_t num_levels = pyramid->info()->num_levels();
67
68 _input = input;
69 _pyramid = pyramid;
70
71 if(num_levels > 1)
72 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010073 _border_handler = arm_compute::support::cpp14::make_unique<CLFillBorderKernel[]>(num_levels - 1);
74 _horizontal_reduction = arm_compute::support::cpp14::make_unique<CLGaussianPyramidHorKernel[]>(num_levels - 1);
75 _vertical_reduction = arm_compute::support::cpp14::make_unique<CLGaussianPyramidVertKernel[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076
77 // Apply half scale to the X dimension of the tensor shape
78 TensorShape tensor_shape = pyramid->info()->tensor_shape();
79 tensor_shape.set(0, (pyramid->info()->width() + 1) * SCALE_PYRAMID_HALF);
80
81 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_HALF, tensor_shape, Format::U16);
82
83 _tmp.init(pyramid_info);
84
85 for(size_t i = 0; i < num_levels - 1; ++i)
86 {
87 /* Configure horizontal kernel */
88 _horizontal_reduction[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode == BorderMode::UNDEFINED);
89
90 /* Configure vertical kernel */
91 _vertical_reduction[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1), border_mode == BorderMode::UNDEFINED);
92
93 /* Configure border */
94 _border_handler[i].configure(_pyramid->get_pyramid_level(i), _horizontal_reduction[i].border_size(), border_mode, PixelValue(constant_border_value));
95 }
96 _tmp.allocate();
97 }
98}
99
100void CLGaussianPyramidHalf::run()
101{
102 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
103
104 /* Get number of pyramid levels */
105 const size_t num_levels = _pyramid->info()->num_levels();
106
107 /* The first level of the pyramid has the input image */
108 _pyramid->get_pyramid_level(0)->map(CLScheduler::get().queue(), true /* blocking */);
109 _input->map(CLScheduler::get().queue(), true /* blocking */);
110 _pyramid->get_pyramid_level(0)->copy_from(*_input);
111 _input->unmap(CLScheduler::get().queue());
112 _pyramid->get_pyramid_level(0)->unmap(CLScheduler::get().queue());
113
114 for(unsigned int i = 0; i < num_levels - 1; ++i)
115 {
116 CLScheduler::get().enqueue(_border_handler[i], false);
117 CLScheduler::get().enqueue(_horizontal_reduction[i], false);
118 CLScheduler::get().enqueue(_vertical_reduction[i], false);
119 }
120}
121
122CLGaussianPyramidOrb::CLGaussianPyramidOrb()
123 : _gauss5x5(), _scale_nearest()
124{
125}
126
127void CLGaussianPyramidOrb::configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
128{
129 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
130 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
131 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
132 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
133 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
134 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_ORB != pyramid->info()->scale());
135
136 /* Get number of pyramid levels */
137 const size_t num_levels = pyramid->info()->num_levels();
138
139 _input = input;
140 _pyramid = pyramid;
141
142 if(num_levels > 1)
143 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100144 _gauss5x5 = arm_compute::support::cpp14::make_unique<CLGaussian5x5[]>(num_levels - 1);
145 _scale_nearest = arm_compute::support::cpp14::make_unique<CLScaleKernel[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146
147 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_ORB, pyramid->info()->tensor_shape(), Format::U8);
148
149 _tmp.init(pyramid_info);
150
151 for(size_t i = 0; i < num_levels - 1; ++i)
152 {
153 /* Configure gaussian 5x5 */
154 _gauss5x5[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode, constant_border_value);
155
156 /* Configure scale image kernel */
157 _scale_nearest[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1), InterpolationPolicy::NEAREST_NEIGHBOR, border_mode == BorderMode::UNDEFINED);
158 }
159
160 _tmp.allocate();
161 }
162}
163
164void CLGaussianPyramidOrb::run()
165{
166 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
167
168 /* Get number of pyramid levels */
169 const size_t num_levels = _pyramid->info()->num_levels();
170
171 /* The first level of the pyramid has the input image */
172 _pyramid->get_pyramid_level(0)->map(CLScheduler::get().queue(), true /* blocking */);
173 _input->map(CLScheduler::get().queue(), true /* blocking */);
174 _pyramid->get_pyramid_level(0)->copy_from(*_input);
175 _input->unmap(CLScheduler::get().queue());
176 _pyramid->get_pyramid_level(0)->unmap(CLScheduler::get().queue());
177
178 for(unsigned int i = 0; i < num_levels - 1; ++i)
179 {
180 _gauss5x5[i].run();
181 CLScheduler::get().enqueue(_scale_nearest[i]);
182 }
183}