blob: af3530151c5e216b112c4dcda7e95235c2aa365a [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitasda953f22019-04-02 17:27:03 +01002 * Copyright (c) 2016-2019 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/NEFastCorners.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
29#include "arm_compute/core/PixelValue.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/runtime/Array.h"
33#include "arm_compute/runtime/NEON/NEScheduler.h"
34#include "arm_compute/runtime/TensorAllocator.h"
35
36using namespace arm_compute;
37
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010038NEFastCorners::NEFastCorners(std::shared_ptr<IMemoryManager> memory_manager)
39 : _memory_group(std::move(memory_manager)),
40 _fast_corners_kernel(),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041 _border_handler(),
42 _nonmax_kernel(),
43 _fill_kernel(),
44 _output(),
45 _suppressed(),
46 _non_max(false)
47{
48}
49
50void NEFastCorners::configure(IImage *input, float threshold, bool nonmax_suppression, KeyPointArray *corners,
51 BorderMode border_mode, uint8_t constant_border_value)
52{
53 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input);
54 ARM_COMPUTE_ERROR_ON(BorderMode::UNDEFINED != border_mode);
55 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
56 ARM_COMPUTE_ERROR_ON(nullptr == corners);
57 ARM_COMPUTE_ERROR_ON(threshold < 1 && threshold > 255);
58
59 _non_max = nonmax_suppression;
60
61 TensorInfo tensor_info(input->info()->tensor_shape(), Format::U8);
62 _output.allocator()->init(tensor_info);
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010063 _memory_group.manage(&_output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064
65 // If border is UNDEFINED _fast_corners_kernel will operate in xwindow (3,
66 // width - 3) and ywindow (3, height -3) so the output image will leave the
67 // pixels on the borders unchanged. This is reflected in the valid region
68 // of the output. The non maxima suppression is only run on the valid
69 // pixels.
70 _fast_corners_kernel.configure(input, &_output, threshold, nonmax_suppression, BorderMode::UNDEFINED == border_mode);
71 _border_handler.configure(input, _fast_corners_kernel.border_size(), border_mode, constant_border_value);
72
73 if(!_non_max)
74 {
75 _fill_kernel.configure(&_output, 1 /* we keep all texels >0 */, corners);
76 }
77 else
78 {
79 _suppressed.allocator()->init(tensor_info);
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010080 _memory_group.manage(&_suppressed);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 _nonmax_kernel.configure(&_output, &_suppressed, BorderMode::UNDEFINED == border_mode);
82 _fill_kernel.configure(&_suppressed, 1 /* we keep all texels >0 */, corners);
83
84 // Allocate intermediate tensors
85 _suppressed.allocator()->allocate();
86 }
87
88 // Allocate intermediate tensors
89 _output.allocator()->allocate();
90}
91
92void NEFastCorners::run()
93{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010094 NEScheduler::get().schedule(&_border_handler, Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095
Georgios Pinitasda953f22019-04-02 17:27:03 +010096 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010097
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098 NEScheduler::get().schedule(&_fast_corners_kernel, Window::DimY);
99
100 if(_non_max)
101 {
102 NEScheduler::get().schedule(&_nonmax_kernel, Window::DimY);
103 }
104
105 NEScheduler::get().schedule(&_fill_kernel, Window::DimY);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106}