blob: 75c439511ea3dc85e027d84f202ca4be42999d19 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 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/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"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010038#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039
40#include <cstddef>
41
42using namespace arm_compute;
43
44NEGaussianPyramid::NEGaussianPyramid()
45 : _input(nullptr), _pyramid(nullptr), _tmp()
46{
47}
48
49NEGaussianPyramidHalf::NEGaussianPyramidHalf()
50 : _border_handler(), _horizontal_reduction(), _vertical_reduction()
51{
52}
53
54void NEGaussianPyramidHalf::configure(const ITensor *input, IPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
55{
56 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
57 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
58 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
59 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
60 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
61 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_HALF != pyramid->info()->scale());
62
63 /* Get number of pyramid levels */
64 const size_t num_levels = pyramid->info()->num_levels();
65
66 _input = input;
67 _pyramid = pyramid;
68
69 if(num_levels > 1)
70 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010071 _border_handler = arm_compute::support::cpp14::make_unique<NEFillBorderKernel[]>(num_levels - 1);
72 _horizontal_reduction = arm_compute::support::cpp14::make_unique<NEGaussianPyramidHorKernel[]>(num_levels - 1);
73 _vertical_reduction = arm_compute::support::cpp14::make_unique<NEGaussianPyramidVertKernel[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
75 // Apply half scale to the X dimension of the tensor shape
76 TensorShape tensor_shape = pyramid->info()->tensor_shape();
77 tensor_shape.set(0, (pyramid->info()->width() + 1) * SCALE_PYRAMID_HALF);
78
79 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_HALF, tensor_shape, Format::S16);
80 _tmp.init(pyramid_info);
81
82 for(unsigned int i = 0; i < num_levels - 1; ++i)
83 {
84 /* Configure horizontal kernel */
85 _horizontal_reduction[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode == BorderMode::UNDEFINED);
86
87 /* Configure vertical kernel */
88 _vertical_reduction[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1), border_mode == BorderMode::UNDEFINED);
89
90 /* Configure border */
91 _border_handler[i].configure(_pyramid->get_pyramid_level(i), _horizontal_reduction[i].border_size(), border_mode, PixelValue(constant_border_value));
92 }
93
94 _tmp.allocate();
95 }
96}
97
98void NEGaussianPyramidHalf::run()
99{
100 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
101
102 /* Get number of pyramid levels */
103 const size_t num_levels = _pyramid->info()->num_levels();
104
105 /* The first level of the pyramid has the input image */
106 _pyramid->get_pyramid_level(0)->copy_from(*_input);
107
108 for(unsigned int i = 0; i < num_levels - 1; ++i)
109 {
110 _border_handler[i].run(_border_handler[i].window());
111 NEScheduler::get().schedule(_horizontal_reduction.get() + i, Window::DimY);
112 NEScheduler::get().schedule(_vertical_reduction.get() + i, Window::DimY);
113 }
114}
115
116NEGaussianPyramidOrb::NEGaussianPyramidOrb()
117 : _offsets(), _gaus5x5(), _scale_nearest()
118{
119}
120
121void NEGaussianPyramidOrb::configure(const ITensor *input, IPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
122{
123 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
124 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
125 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
126 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
127 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
128 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_ORB != pyramid->info()->scale());
129
130 /* Get number of pyramid levels */
131 const size_t num_levels = pyramid->info()->num_levels();
132
133 _input = input;
134 _pyramid = pyramid;
135
136 if(num_levels > 1)
137 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100138 _gaus5x5 = arm_compute::support::cpp14::make_unique<NEGaussian5x5[]>(num_levels - 1);
139 _scale_nearest = arm_compute::support::cpp14::make_unique<NEScaleKernel[]>(num_levels - 1);
140 _offsets = arm_compute::support::cpp14::make_unique<Image[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141
142 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_ORB, pyramid->info()->tensor_shape(), Format::U8);
143 _tmp.init(pyramid_info);
144
145 for(unsigned int i = 0; i < num_levels - 1; ++i)
146 {
147 const size_t width = _pyramid->get_pyramid_level(i + 1)->info()->dimension(0);
148 const size_t height = _pyramid->get_pyramid_level(i + 1)->info()->dimension(1);
149
150 /* Allocate Image for the offsets used by NEAREST interpolation */
151 TensorInfo tensor_info(TensorShape(width, height), Format::S32);
152 _offsets[i].allocator()->init(tensor_info);
153
154 /* Configure gaussian 5x5 */
155 _gaus5x5[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode, constant_border_value);
156
157 /* Configure scale image kernel */
158 _scale_nearest[i].configure(_tmp.get_pyramid_level(i), nullptr, nullptr, _offsets.get() + i, _pyramid->get_pyramid_level(i + 1), InterpolationPolicy::NEAREST_NEIGHBOR,
159 border_mode == BorderMode::UNDEFINED);
160
161 _offsets[i].allocator()->allocate();
162 }
163
164 _tmp.allocate();
165 }
166}
167
168void NEGaussianPyramidOrb::run()
169{
170 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
171
172 /* Get number of pyramid levels */
173 const size_t num_levels = _pyramid->info()->num_levels();
174
175 /* The first level of the pyramid has the input image */
176 _pyramid->get_pyramid_level(0)->copy_from(*_input);
177
178 for(unsigned int i = 0; i < num_levels - 1; ++i)
179 {
180 _gaus5x5[i].run();
181 NEScheduler::get().schedule(_scale_nearest.get() + i, Window::DimY);
182 }
183}