blob: 6ea14a38e5d18516a45ec8fd7c4d67010d944256 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Alex Gildayc357c472018-03-21 13:54:09 +00002 * Copyright (c) 2016-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#ifndef __ARM_COMPUTE_NEHARRISCORNERS_H__
25#define __ARM_COMPUTE_NEHARRISCORNERS_H__
26
27#include "arm_compute/core/CPP/kernels/CPPCornerCandidatesKernel.h"
28#include "arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h"
29#include "arm_compute/core/NEON/kernels/NEFillBorderKernel.h"
30#include "arm_compute/core/NEON/kernels/NEHarrisCornersKernel.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/runtime/Array.h"
33#include "arm_compute/runtime/IFunction.h"
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010034#include "arm_compute/runtime/IMemoryManager.h"
35#include "arm_compute/runtime/MemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/runtime/NEON/functions/NENonMaximaSuppression3x3.h"
37#include "arm_compute/runtime/Tensor.h"
38
39#include <cstdint>
40#include <memory>
41
42namespace arm_compute
43{
44class ITensor;
45using IImage = ITensor;
46
47/** Basic function to execute harris corners detection. This function calls the following NEON kernels and functions:
48 *
49 * -# @ref NESobel3x3 (if gradient_size == 3) or<br/>
50 * @ref NESobel5x5 (if gradient_size == 5) or<br/>
51 * @ref NESobel7x7 (if gradient_size == 7)
52 * -# @ref NEFillBorderKernel
53 * -# NEHarrisScoreKernel<3> (if block_size == 3) or<br/>
54 * NEHarrisScoreKernel<5> (if block_size == 5) or<br/>
55 * NEHarrisScoreKernel<7> (if block_size == 7)
56 * -# @ref NENonMaximaSuppression3x3
57 * -# @ref CPPCornerCandidatesKernel
58 * -# @ref CPPSortEuclideanDistanceKernel
59 *
60 */
61class NEHarrisCorners : public IFunction
62{
63public:
64 /** Constructor
65 *
66 * Initialize _sobel, _harris_score and _corner_list to nullptr.
Alex Gildayc357c472018-03-21 13:54:09 +000067 *
68 * @param[in] memory_manager (Optional) Memory manager.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069 */
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010070 NEHarrisCorners(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 /** Initialize the function's source, destination, conv and border_mode.
72 *
73 * @param[in, out] input Source image. Data type supported: U8. (Written to only for @p border_mode != UNDEFINED)
74 * @param[in] threshold Minimum threshold with which to eliminate Harris Corner scores (computed using the normalized Sobel kernel).
75 * @param[in] min_dist Radial Euclidean distance for the euclidean diatance stage
76 * @param[in] sensitivity Sensitivity threshold k from the Harris-Stephens equation
77 * @param[in] gradient_size The gradient window size to use on the input. The implementation supports 3, 5, and 7
78 * @param[in] block_size The block window size used to compute the Harris Corner score. The implementation supports 3, 5, and 7.
79 * @param[out] corners Array of keypoints to store the results.
80 * @param[in] border_mode Border mode to use
81 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
82 * @param[in] use_fp16 (Optional) If true the FP16 kernels will be used. If false F32 kernels are used.
83 */
84 void configure(IImage *input, float threshold, float min_dist, float sensitivity,
85 int32_t gradient_size, int32_t block_size, KeyPointArray *corners,
86 BorderMode border_mode, uint8_t constant_border_value = 0, bool use_fp16 = false);
87
88 // Inherited methods overridden:
89 void run() override;
90
91private:
Georgios Pinitasd910ffa2017-09-18 16:04:42 +010092 MemoryGroup _memory_group; /**< Function's memory group */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093 std::unique_ptr<IFunction> _sobel; /**< Sobel function */
94 std::unique_ptr<INEHarrisScoreKernel> _harris_score; /**< Harris score kernel */
95 NENonMaximaSuppression3x3 _non_max_suppr; /**< Non-maxima suppression function */
96 CPPCornerCandidatesKernel _candidates; /**< Sort kernel */
97 CPPSortEuclideanDistanceKernel _sort_euclidean; /**< Euclidean distance kernel */
98 NEFillBorderKernel _border_gx; /**< Border handler before running harris score */
99 NEFillBorderKernel _border_gy; /**< Border handler before running harris score */
100 Image _gx; /**< Source image - Gx component */
101 Image _gy; /**< Source image - Gy component */
102 Image _score; /**< Source image - Harris score */
103 Image _nonmax; /**< Source image - Non-Maxima suppressed image */
104 std::unique_ptr<InternalKeypoint[]> _corners_list; /**< Array of InternalKeypoint. It stores the potential corner candidates */
105 int32_t _num_corner_candidates; /**< Number of potential corner candidates */
106};
107}
108#endif /*__ARM_COMPUTE_NEHARRISCORNERS_H__ */