blob: ae883bcb207b8aabaab483af3be511eaa52a4fe4 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-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/NEON/functions/NEGaussianPyramid.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/kernels/NEGaussianPyramidKernel.h"
29#include "arm_compute/core/NEON/kernels/NEScaleKernel.h"
30#include "arm_compute/core/PixelValue.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Validate.h"
33#include "arm_compute/runtime/NEON/NEScheduler.h"
34#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
35#include "arm_compute/runtime/Pyramid.h"
36#include "arm_compute/runtime/Tensor.h"
37#include "arm_compute/runtime/TensorAllocator.h"
38
39#include <cstddef>
40
41using namespace arm_compute;
42
43NEGaussianPyramid::NEGaussianPyramid()
44 : _input(nullptr), _pyramid(nullptr), _tmp()
45{
46}
47
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010048NEGaussianPyramidHalf::NEGaussianPyramidHalf() // NOLINT
Gian Marco37908d92017-11-07 14:38:22 +000049 : _horizontal_border_handler(),
50 _vertical_border_handler(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010051 _horizontal_reduction(),
52 _vertical_reduction()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053{
54}
55
56void NEGaussianPyramidHalf::configure(const ITensor *input, IPyramid *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(nullptr == pyramid);
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
Gian Marco37908d92017-11-07 14:38:22 +000065 // Constant value to use for vertical fill border when the border mode is CONSTANT
66 const uint16_t pixel_value_u16 = static_cast<uint16_t>(constant_border_value) * 2 + static_cast<uint16_t>(constant_border_value) * 8 + static_cast<uint16_t>(constant_border_value) * 6;
67
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 /* Get number of pyramid levels */
69 const size_t num_levels = pyramid->info()->num_levels();
Georgios Pinitas725b1732019-05-20 19:40:47 +010070 const size_t num_stages = num_levels - 1;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071
72 _input = input;
73 _pyramid = pyramid;
74
75 if(num_levels > 1)
76 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 // 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::S16);
82 _tmp.init(pyramid_info);
83
Georgios Pinitas725b1732019-05-20 19:40:47 +010084 _horizontal_reduction.clear();
85 _vertical_reduction.clear();
86 _horizontal_border_handler.clear();
87 _vertical_border_handler.clear();
Michalis Spyrou299fdd32019-05-01 13:03:59 +010088
Georgios Pinitas725b1732019-05-20 19:40:47 +010089 _horizontal_reduction.resize(num_stages);
90 _vertical_reduction.resize(num_stages);
91 _horizontal_border_handler.resize(num_stages);
92 _vertical_border_handler.resize(num_stages);
93
94 for(size_t i = 0; i < num_stages; ++i)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095 {
96 /* Configure horizontal kernel */
Georgios Pinitas725b1732019-05-20 19:40:47 +010097 _horizontal_reduction[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
99 /* Configure vertical kernel */
Georgios Pinitas725b1732019-05-20 19:40:47 +0100100 _vertical_reduction[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101
102 /* Configure border */
Georgios Pinitas725b1732019-05-20 19:40:47 +0100103 _horizontal_border_handler[i].configure(_pyramid->get_pyramid_level(i), _horizontal_reduction[i].border_size(), border_mode, PixelValue(constant_border_value));
Gian Marco37908d92017-11-07 14:38:22 +0000104
105 /* Configure border */
Georgios Pinitas725b1732019-05-20 19:40:47 +0100106 _vertical_border_handler[i].configure(_tmp.get_pyramid_level(i), _vertical_reduction[i].border_size(), border_mode, PixelValue(pixel_value_u16));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107 }
108
109 _tmp.allocate();
110 }
111}
112
113void NEGaussianPyramidHalf::run()
114{
115 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
116
117 /* Get number of pyramid levels */
Georgios Pinitas725b1732019-05-20 19:40:47 +0100118 const unsigned int num_levels = _pyramid->info()->num_levels();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119
120 /* The first level of the pyramid has the input image */
121 _pyramid->get_pyramid_level(0)->copy_from(*_input);
122
123 for(unsigned int i = 0; i < num_levels - 1; ++i)
124 {
Georgios Pinitas725b1732019-05-20 19:40:47 +0100125 NEScheduler::get().schedule(&_horizontal_border_handler[i], Window::DimZ);
126 NEScheduler::get().schedule(&_horizontal_reduction[i], Window::DimY);
127 NEScheduler::get().schedule(&_vertical_border_handler[i], Window::DimZ);
128 NEScheduler::get().schedule(&_vertical_reduction[i], Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 }
130}
131
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +0100132NEGaussianPyramidOrb::NEGaussianPyramidOrb() // NOLINT
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100133 : _gaus5x5(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +0100134 _scale_nearest()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135{
136}
137
138void NEGaussianPyramidOrb::configure(const ITensor *input, IPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
139{
140 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
141 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
142 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
143 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
144 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
145 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_ORB != pyramid->info()->scale());
146
147 /* Get number of pyramid levels */
148 const size_t num_levels = pyramid->info()->num_levels();
Georgios Pinitas725b1732019-05-20 19:40:47 +0100149 const size_t num_stages = num_levels - 1;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150
151 _input = input;
152 _pyramid = pyramid;
153
Georgios Pinitas725b1732019-05-20 19:40:47 +0100154 _gaus5x5.clear();
155 _scale_nearest.clear();
156
157 _gaus5x5.resize(num_stages);
158 _scale_nearest.resize(num_stages);
159
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 if(num_levels > 1)
161 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_ORB, pyramid->info()->tensor_shape(), Format::U8);
163 _tmp.init(pyramid_info);
164
Georgios Pinitas725b1732019-05-20 19:40:47 +0100165 for(size_t i = 0; i < num_levels - 1; ++i)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167 /* Configure gaussian 5x5 */
Georgios Pinitas725b1732019-05-20 19:40:47 +0100168 _gaus5x5[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode, constant_border_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100170 /* Configure scale */
Sang-Hoon Parkccd94962020-06-09 12:09:24 +0100171 _scale_nearest[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1), ScaleKernelInfo{ InterpolationPolicy::NEAREST_NEIGHBOR, BorderMode::UNDEFINED });
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100172 }
173
174 _tmp.allocate();
175 }
176}
177
178void NEGaussianPyramidOrb::run()
179{
180 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
181
182 /* Get number of pyramid levels */
183 const size_t num_levels = _pyramid->info()->num_levels();
184
185 /* The first level of the pyramid has the input image */
186 _pyramid->get_pyramid_level(0)->copy_from(*_input);
187
188 for(unsigned int i = 0; i < num_levels - 1; ++i)
189 {
Georgios Pinitas725b1732019-05-20 19:40:47 +0100190 _gaus5x5[i].run();
191 _scale_nearest[i].run();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100192 }
193}