blob: 8a85bba68b2ad52a568a355a06812f2ef3f16532 [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
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010049NEGaussianPyramidHalf::NEGaussianPyramidHalf() // NOLINT
Gian Marco37908d92017-11-07 14:38:22 +000050 : _horizontal_border_handler(),
51 _vertical_border_handler(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010052 _horizontal_reduction(),
53 _vertical_reduction()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054{
55}
56
57void NEGaussianPyramidHalf::configure(const ITensor *input, IPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
58{
59 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
60 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
61 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
62 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
63 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
64 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_HALF != pyramid->info()->scale());
65
Gian Marco37908d92017-11-07 14:38:22 +000066 // Constant value to use for vertical fill border when the border mode is CONSTANT
67 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;
68
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069 /* Get number of pyramid levels */
70 const size_t num_levels = pyramid->info()->num_levels();
71
72 _input = input;
73 _pyramid = pyramid;
74
75 if(num_levels > 1)
76 {
Gian Marco37908d92017-11-07 14:38:22 +000077 _horizontal_border_handler = arm_compute::support::cpp14::make_unique<NEFillBorderKernel[]>(num_levels - 1);
78 _vertical_border_handler = arm_compute::support::cpp14::make_unique<NEFillBorderKernel[]>(num_levels - 1);
79 _horizontal_reduction = arm_compute::support::cpp14::make_unique<NEGaussianPyramidHorKernel[]>(num_levels - 1);
80 _vertical_reduction = arm_compute::support::cpp14::make_unique<NEGaussianPyramidVertKernel[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081
82 // Apply half scale to the X dimension of the tensor shape
83 TensorShape tensor_shape = pyramid->info()->tensor_shape();
84 tensor_shape.set(0, (pyramid->info()->width() + 1) * SCALE_PYRAMID_HALF);
85
86 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_HALF, tensor_shape, Format::S16);
87 _tmp.init(pyramid_info);
88
89 for(unsigned int i = 0; i < num_levels - 1; ++i)
90 {
91 /* Configure horizontal kernel */
Gian Marco37908d92017-11-07 14:38:22 +000092 _horizontal_reduction[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
94 /* Configure vertical kernel */
Gian Marco37908d92017-11-07 14:38:22 +000095 _vertical_reduction[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
97 /* Configure border */
Gian Marco37908d92017-11-07 14:38:22 +000098 _horizontal_border_handler[i].configure(_pyramid->get_pyramid_level(i), _horizontal_reduction[i].border_size(), border_mode, PixelValue(constant_border_value));
99
100 /* Configure border */
101 _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 +0100102 }
103
104 _tmp.allocate();
105 }
106}
107
108void NEGaussianPyramidHalf::run()
109{
110 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
111
112 /* Get number of pyramid levels */
113 const size_t num_levels = _pyramid->info()->num_levels();
114
115 /* The first level of the pyramid has the input image */
116 _pyramid->get_pyramid_level(0)->copy_from(*_input);
117
118 for(unsigned int i = 0; i < num_levels - 1; ++i)
119 {
Gian Marco37908d92017-11-07 14:38:22 +0000120 NEScheduler::get().schedule(_horizontal_border_handler.get() + i, Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121 NEScheduler::get().schedule(_horizontal_reduction.get() + i, Window::DimY);
Gian Marco37908d92017-11-07 14:38:22 +0000122 NEScheduler::get().schedule(_vertical_border_handler.get() + i, Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123 NEScheduler::get().schedule(_vertical_reduction.get() + i, Window::DimY);
124 }
125}
126
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +0100127NEGaussianPyramidOrb::NEGaussianPyramidOrb() // NOLINT
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100128 : _gaus5x5(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +0100129 _scale_nearest()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130{
131}
132
133void NEGaussianPyramidOrb::configure(const ITensor *input, IPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value)
134{
135 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
136 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
137 ARM_COMPUTE_ERROR_ON(input->info()->num_dimensions() != pyramid->get_pyramid_level(0)->info()->num_dimensions());
138 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
139 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
140 ARM_COMPUTE_ERROR_ON(SCALE_PYRAMID_ORB != pyramid->info()->scale());
141
142 /* Get number of pyramid levels */
143 const size_t num_levels = pyramid->info()->num_levels();
144
145 _input = input;
146 _pyramid = pyramid;
147
148 if(num_levels > 1)
149 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100150 _gaus5x5 = arm_compute::support::cpp14::make_unique<NEGaussian5x5[]>(num_levels - 1);
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100151 _scale_nearest = arm_compute::support::cpp14::make_unique<NEScale[]>(num_levels - 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152
153 PyramidInfo pyramid_info(num_levels - 1, SCALE_PYRAMID_ORB, pyramid->info()->tensor_shape(), Format::U8);
154 _tmp.init(pyramid_info);
155
156 for(unsigned int i = 0; i < num_levels - 1; ++i)
157 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100158 /* Configure gaussian 5x5 */
159 _gaus5x5[i].configure(_pyramid->get_pyramid_level(i), _tmp.get_pyramid_level(i), border_mode, constant_border_value);
160
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100161 /* Configure scale */
162 _scale_nearest[i].configure(_tmp.get_pyramid_level(i), _pyramid->get_pyramid_level(i + 1), InterpolationPolicy::NEAREST_NEIGHBOR, BorderMode::UNDEFINED);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163 }
164
165 _tmp.allocate();
166 }
167}
168
169void NEGaussianPyramidOrb::run()
170{
171 ARM_COMPUTE_ERROR_ON_MSG(_pyramid == nullptr, "Unconfigured function");
172
173 /* Get number of pyramid levels */
174 const size_t num_levels = _pyramid->info()->num_levels();
175
176 /* The first level of the pyramid has the input image */
177 _pyramid->get_pyramid_level(0)->copy_from(*_input);
178
179 for(unsigned int i = 0; i < num_levels - 1; ++i)
180 {
181 _gaus5x5[i].run();
Georgios Pinitas3021edf2017-09-18 17:55:22 +0100182 _scale_nearest[i].run();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100183 }
184}