blob: 1d73148f47f5bfbc39ff9c7c686eaceaf571b7f7 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Abe Mbise1b993382017-12-19 13:51:59 +00002 * Copyright (c) 2017-2018 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/NECannyEdge.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/NECannyEdgeKernel.h"
29#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Validate.h"
32#include "arm_compute/runtime/NEON/NEScheduler.h"
33#include "arm_compute/runtime/NEON/functions/NESobel3x3.h"
34#include "arm_compute/runtime/NEON/functions/NESobel5x5.h"
35#include "arm_compute/runtime/NEON/functions/NESobel7x7.h"
36#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010037#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39#include <cstring>
40#include <utility>
41
42using namespace arm_compute;
43
Georgios Pinitas658039b2017-09-15 16:30:50 +010044NECannyEdge::NECannyEdge(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT
45 : _memory_group(std::move(memory_manager)),
46 _sobel(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010047 _gradient(),
48 _non_max_suppr(),
49 _edge_trace(),
50 _border_mag_gradient(),
51 _border_edge_trace(),
52 _gx(),
53 _gy(),
54 _magnitude(),
55 _phase(),
56 _nonmax(),
57 _output(nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058{
59}
60
61void NECannyEdge::configure(ITensor *input, ITensor *output, int32_t upper_thr, int32_t lower_thr, int32_t gradient_size, int32_t norm_type, BorderMode border_mode, uint8_t constant_border_value,
62 bool use_fp16)
63{
Abe Mbise1b993382017-12-19 13:51:59 +000064 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010065 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
66 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067 ARM_COMPUTE_ERROR_ON((1 != norm_type) && (2 != norm_type));
Abe Mbise1b993382017-12-19 13:51:59 +000068 ARM_COMPUTE_ERROR_ON((gradient_size != 3) && (gradient_size != 5) && (gradient_size != 7));
69 ARM_COMPUTE_ERROR_ON(lower_thr > upper_thr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070
71 _output = output;
72
73 const TensorShape &shape = input->info()->tensor_shape();
74 TensorInfo gradient_info;
75 TensorInfo magnitude_info;
76
77 // Initialize images
78 if(gradient_size < 7)
79 {
80 gradient_info.init(shape, Format::S16);
81 magnitude_info.init(shape, Format::U16);
82 }
83 else
84 {
85 gradient_info.init(shape, Format::S32);
86 magnitude_info.init(shape, Format::U32);
87 }
88
89 _gx.allocator()->init(gradient_info);
90 _gy.allocator()->init(gradient_info);
91 _magnitude.allocator()->init(magnitude_info);
92
93 TensorInfo info(shape, Format::U8);
94 _phase.allocator()->init(info);
95 _nonmax.allocator()->init(info);
96
Georgios Pinitas658039b2017-09-15 16:30:50 +010097 // Manage intermediate buffers
98 _memory_group.manage(&_gx);
99 _memory_group.manage(&_gy);
100
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101 // Configure/Init sobelNxN
102 if(gradient_size == 3)
103 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100104 auto k = arm_compute::support::cpp14::make_unique<NESobel3x3>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105 k->configure(input, &_gx, &_gy, border_mode, constant_border_value);
106 _sobel = std::move(k);
107 }
108 else if(gradient_size == 5)
109 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100110 auto k = arm_compute::support::cpp14::make_unique<NESobel5x5>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111 k->configure(input, &_gx, &_gy, border_mode, constant_border_value);
112 _sobel = std::move(k);
113 }
114 else if(gradient_size == 7)
115 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100116 auto k = arm_compute::support::cpp14::make_unique<NESobel7x7>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117 k->configure(input, &_gx, &_gy, border_mode, constant_border_value);
118 _sobel = std::move(k);
119 }
120 else
121 {
Abe Mbise1b993382017-12-19 13:51:59 +0000122 ARM_COMPUTE_ERROR("Gradient size %d not supported\n", gradient_size);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123 }
124
Georgios Pinitas658039b2017-09-15 16:30:50 +0100125 // Manage intermediate buffers
126 _memory_group.manage(&_magnitude);
127 _memory_group.manage(&_phase);
128
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 // Configure gradient
130 if(use_fp16)
131 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100132 auto k = arm_compute::support::cpp14::make_unique<NEGradientFP16Kernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133 k->configure(&_gx, &_gy, &_magnitude, &_phase, norm_type);
134 _gradient = std::move(k);
135 }
136 else
137 {
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +0100138 auto k = arm_compute::support::cpp14::make_unique<NEGradientKernel>();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 k->configure(&_gx, &_gy, &_magnitude, &_phase, norm_type);
140 _gradient = std::move(k);
141 }
142
Georgios Pinitas658039b2017-09-15 16:30:50 +0100143 // Allocate intermediate tensors
144 _gx.allocator()->allocate();
145 _gy.allocator()->allocate();
146
147 // Manage intermediate buffers
148 _memory_group.manage(&_nonmax);
149
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100150 // Configure non-maxima suppression
151 _non_max_suppr.configure(&_magnitude, &_phase, &_nonmax, upper_thr, lower_thr, border_mode == BorderMode::UNDEFINED);
152
153 // Fill border around magnitude image as non-maxima suppression will access
154 // it. If border mode is undefined filling the border is a nop.
155 _border_mag_gradient.configure(&_magnitude, _non_max_suppr.border_size(), border_mode, constant_border_value);
156
Georgios Pinitas658039b2017-09-15 16:30:50 +0100157 // Allocate intermediate tensors
158 _phase.allocator()->allocate();
159 _magnitude.allocator()->allocate();
160
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161 // Configure edge tracing
162 _edge_trace.configure(&_nonmax, output);
163
164 // Fill border with "No edge" to stop recursion in edge trace
Michalis Spyrou490bf2e2017-09-29 11:24:55 +0100165 _border_edge_trace.configure(&_nonmax, _edge_trace.border_size(), BorderMode::CONSTANT, static_cast<float>(0.f));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166
167 // Allocate intermediate tensors
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100168 _nonmax.allocator()->allocate();
169}
170
171void NECannyEdge::run()
172{
173 ARM_COMPUTE_ERROR_ON_MSG(_sobel == nullptr, "Unconfigured function");
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100174
Georgios Pinitas658039b2017-09-15 16:30:50 +0100175 _memory_group.acquire();
176
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100177 // Run sobelNxN
178 _sobel->run();
179
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100180 // Run gradient
181 NEScheduler::get().schedule(_gradient.get(), Window::DimY);
182
Abe Mbise1b993382017-12-19 13:51:59 +0000183 // Fill border before non-maxima suppression. Nop for border mode undefined.
184 NEScheduler::get().schedule(&_border_mag_gradient, Window::DimZ);
185
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186 // Run non-maxima suppression
187 NEScheduler::get().schedule(&_non_max_suppr, Window::DimY);
188
189 ARM_COMPUTE_ERROR_ON(_output->buffer() == nullptr);
Abe Mbise1b993382017-12-19 13:51:59 +0000190 std::fill_n(_output->buffer(), _output->info()->total_size(), 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100191
192 // Fill border before edge trace
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100193 NEScheduler::get().schedule(&_border_edge_trace, Window::DimZ);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100194
195 // Run edge tracing
Moritz Pflanzerc186b572017-09-07 09:48:04 +0100196 NEScheduler::get().schedule(&_edge_trace, Window::DimY);
Georgios Pinitas658039b2017-09-15 16:30:50 +0100197
198 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199}