blob: 418d34983037944916103a30b532ba3ea767798f [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 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/core/CPP/kernels/CPPCornerCandidatesKernel.h"
25
26#include "arm_compute/core/Coordinates.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/IAccessWindow.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35
36using namespace arm_compute;
37
38namespace
39{
Michalis Spyrou07781ac2017-08-31 15:11:41 +010040inline void check_corner(float x, float y, float strength, InternalKeypoint *output, int32_t *num_corner_candidates, arm_compute::Mutex *corner_candidates_mutex)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041{
42 if(strength != 0.0f)
43 {
44 /* Set index and update num_corner_candidate */
Michalis Spyrou07781ac2017-08-31 15:11:41 +010045 std::unique_lock<arm_compute::Mutex> lock(*corner_candidates_mutex);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046
47 const int32_t idx = *num_corner_candidates;
48
49 *num_corner_candidates += 1;
50
51 lock.unlock();
52
53 /* Add keypoint */
54 output[idx] = std::make_tuple(x, y, strength);
55 }
56}
57
Michalis Spyrou07781ac2017-08-31 15:11:41 +010058inline void corner_candidates(const float *__restrict input, InternalKeypoint *__restrict output, int32_t x, int32_t y, int32_t *num_corner_candidates, arm_compute::Mutex *corner_candidates_mutex)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059{
Giorgio Arenafc2817d2017-06-27 17:26:37 +010060 check_corner(x, y, *input, output, num_corner_candidates, corner_candidates_mutex);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061}
62} // namespace
63
64bool keypoint_compare(const InternalKeypoint &lhs, const InternalKeypoint &rhs)
65{
66 return std::get<2>(lhs) > std::get<2>(rhs);
67}
68
69CPPCornerCandidatesKernel::CPPCornerCandidatesKernel()
70 : _num_corner_candidates(nullptr), _corner_candidates_mutex(), _input(nullptr), _output(nullptr)
71{
72}
73
74void CPPCornerCandidatesKernel::configure(const IImage *input, InternalKeypoint *output, int32_t *num_corner_candidates)
75{
76 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input);
77 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
78 ARM_COMPUTE_ERROR_ON(nullptr == output);
79 ARM_COMPUTE_ERROR_ON(nullptr == num_corner_candidates);
80 ARM_COMPUTE_ERROR_ON(*num_corner_candidates != 0);
81
82 _input = input;
83 _output = output;
84 _num_corner_candidates = num_corner_candidates;
85
Giorgio Arenafc2817d2017-06-27 17:26:37 +010086 const unsigned int num_elems_processed_per_iteration = 1;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087
88 // Configure kernel window
89 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
90
91 update_window_and_padding(win, AccessWindowHorizontal(input->info(), 0, num_elems_processed_per_iteration));
92
93 INEKernel::configure(win);
94}
95
Moritz Pflanzerc186b572017-09-07 09:48:04 +010096void CPPCornerCandidatesKernel::run(const Window &window, const ThreadInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097{
Moritz Pflanzerc186b572017-09-07 09:48:04 +010098 ARM_COMPUTE_UNUSED(info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
100 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
101 Iterator input(_input, window);
102
103 execute_window_loop(window, [&](const Coordinates & id)
104 {
105 corner_candidates(reinterpret_cast<float *>(input.ptr()), &_output[0], id.x(), id.y(), _num_corner_candidates, &_corner_candidates_mutex);
106 },
107 input);
108}