blob: 884da2861b93d42eb05618955fe004667b53986a [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{
40inline void check_corner(float x, float y, float strength, InternalKeypoint *output, int32_t *num_corner_candidates, std::mutex *corner_candidates_mutex)
41{
42 if(strength != 0.0f)
43 {
44 /* Set index and update num_corner_candidate */
45 std::unique_lock<std::mutex> lock(*corner_candidates_mutex);
46
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
58inline void corner_candidates(const float *__restrict input, InternalKeypoint *__restrict output, int32_t x, int32_t y, int32_t *num_corner_candidates, std::mutex *corner_candidates_mutex)
59{
60 check_corner(x + 0, y, *(input + 0), output, num_corner_candidates, corner_candidates_mutex);
61 check_corner(x + 1, y, *(input + 1), output, num_corner_candidates, corner_candidates_mutex);
62 check_corner(x + 2, y, *(input + 2), output, num_corner_candidates, corner_candidates_mutex);
63 check_corner(x + 3, y, *(input + 3), output, num_corner_candidates, corner_candidates_mutex);
64}
65} // namespace
66
67bool keypoint_compare(const InternalKeypoint &lhs, const InternalKeypoint &rhs)
68{
69 return std::get<2>(lhs) > std::get<2>(rhs);
70}
71
72CPPCornerCandidatesKernel::CPPCornerCandidatesKernel()
73 : _num_corner_candidates(nullptr), _corner_candidates_mutex(), _input(nullptr), _output(nullptr)
74{
75}
76
77void CPPCornerCandidatesKernel::configure(const IImage *input, InternalKeypoint *output, int32_t *num_corner_candidates)
78{
79 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input);
80 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32);
81 ARM_COMPUTE_ERROR_ON(nullptr == output);
82 ARM_COMPUTE_ERROR_ON(nullptr == num_corner_candidates);
83 ARM_COMPUTE_ERROR_ON(*num_corner_candidates != 0);
84
85 _input = input;
86 _output = output;
87 _num_corner_candidates = num_corner_candidates;
88
89 const unsigned int num_elems_processed_per_iteration = 4;
90
91 // Configure kernel window
92 Window win = calculate_max_window(*input->info(), Steps(num_elems_processed_per_iteration));
93
94 update_window_and_padding(win, AccessWindowHorizontal(input->info(), 0, num_elems_processed_per_iteration));
95
96 INEKernel::configure(win);
97}
98
99void CPPCornerCandidatesKernel::run(const Window &window)
100{
101 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
102 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
103 Iterator input(_input, window);
104
105 execute_window_loop(window, [&](const Coordinates & id)
106 {
107 corner_candidates(reinterpret_cast<float *>(input.ptr()), &_output[0], id.x(), id.y(), _num_corner_candidates, &_corner_candidates_mutex);
108 },
109 input);
110}