blob: 7f4a456eb34cdf6114e218c84c83ceb676e4eee4 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2016-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CLHARRISCORNERS_H
25#define ARM_COMPUTE_CLHARRISCORNERS_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/CL/ICLArray.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010028#include "arm_compute/core/CPP/kernels/CPPCornerCandidatesKernel.h"
29#include "arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/Types.h"
31#include "arm_compute/runtime/CL/CLTensor.h"
Giorgio Arenafc2817d2017-06-27 17:26:37 +010032#include "arm_compute/runtime/CL/functions/CLNonMaximaSuppression3x3.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010033#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas5701e2a2017-09-18 17:43:33 +010034#include "arm_compute/runtime/IMemoryManager.h"
Georgios Pinitas26014cf2019-09-09 19:00:57 +010035#include "arm_compute/runtime/MemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include <cstdint>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037#include <memory>
38
39namespace arm_compute
40{
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010041class CLCompileContext;
42class CLHarrisScoreKernel;
43class CLFillBorderKernel;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044class ICLTensor;
45using ICLImage = ICLTensor;
46
Sheri Zhangac6499a2021-02-10 15:32:38 +000047/** Basic function to execute harris corners detection. This function calls the following CL and Neon kernels and functions:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048 *
49 * @note Requires CPU support for the kernels: CPPCornerCandidatesKernel and CPPSortEuclideanDistanceKernel.
50 *
51 * -# @ref CLSobel3x3 (if gradient_size == 3) or<br/>
52 * @ref CLSobel5x5 (if gradient_size == 5) or<br/>
53 * @ref CLSobel7x7 (if gradient_size == 7)
54 * -# @ref CLFillBorderKernel
55 * -# @ref CLHarrisScoreKernel
56 * -# @ref CLNonMaximaSuppression3x3
57 * -# @ref CPPCornerCandidatesKernel
58 * -# @ref CPPSortEuclideanDistanceKernel
morgolock00c76012020-11-06 10:40:12 +000059 *
60 * @deprecated This function is deprecated and is intended to be removed in 21.05 release
61 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062 */
63class CLHarrisCorners : public IFunction
64{
65public:
66 /** Constructor */
Georgios Pinitas5701e2a2017-09-18 17:43:33 +010067 CLHarrisCorners(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 /** Prevent instances of this class from being copied (As this class contains pointers) */
69 CLHarrisCorners(const CLHarrisCorners &) = delete;
70 /** Prevent instances of this class from being copied (As this class contains pointers) */
71 const CLHarrisCorners &operator=(const CLHarrisCorners &) = delete;
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010072 /** Default destructor */
73 ~CLHarrisCorners();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074 /** Initialize the function's source, destination, conv and border_mode.
75 *
76 * @param[in,out] input Source image. Data types supported: U8. (Written to only for @p border_mode != UNDEFINED)
77 * @param[in] threshold Minimum threshold with which to eliminate Harris Corner scores (computed using the normalized Sobel kernel).
78 * @param[in] min_dist Radial Euclidean distance for the euclidean distance stage.
79 * @param[in] sensitivity Sensitivity threshold k from the Harris-Stephens equation
80 * @param[in] gradient_size The gradient window size to use on the input. The implementation supports 3, 5, and 7
81 * @param[in] block_size The block window size used to compute the Harris Corner score. The implementation supports 3, 5, and 7.
82 * @param[out] corners Array of keypoints to store the results.
83 * @param[in] border_mode Border mode to use
84 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
Alex Gilday64856912018-01-05 10:10:28 +000085 * @param[in] use_fp16 (Optional) If true the FP16 kernels will be used. If false F32 kernels are used.
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086 */
87 void configure(ICLImage *input, float threshold, float min_dist, float sensitivity,
88 int32_t gradient_size, int32_t block_size, ICLKeyPointArray *corners,
Alex Gilday64856912018-01-05 10:10:28 +000089 BorderMode border_mode, uint8_t constant_border_value = 0, bool use_fp16 = false);
Manuel Bottini2b84be52020-04-08 10:15:51 +010090 /** Initialize the function's source, destination, conv and border_mode.
91 *
92 * @param[in] compile_context The compile context to be used.
93 * @param[in,out] input Source image. Data types supported: U8. (Written to only for @p border_mode != UNDEFINED)
94 * @param[in] threshold Minimum threshold with which to eliminate Harris Corner scores (computed using the normalized Sobel kernel).
95 * @param[in] min_dist Radial Euclidean distance for the euclidean distance stage.
96 * @param[in] sensitivity Sensitivity threshold k from the Harris-Stephens equation
97 * @param[in] gradient_size The gradient window size to use on the input. The implementation supports 3, 5, and 7
98 * @param[in] block_size The block window size used to compute the Harris Corner score. The implementation supports 3, 5, and 7.
99 * @param[out] corners Array of keypoints to store the results.
100 * @param[in] border_mode Border mode to use
101 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
102 * @param[in] use_fp16 (Optional) If true the FP16 kernels will be used. If false F32 kernels are used.
103 */
104 void configure(const CLCompileContext &compile_context, ICLImage *input, float threshold, float min_dist, float sensitivity,
105 int32_t gradient_size, int32_t block_size, ICLKeyPointArray *corners,
106 BorderMode border_mode, uint8_t constant_border_value = 0, bool use_fp16 = false);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107
108 // Inherited methods overridden:
109 void run() override;
110
111private:
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +0100112 MemoryGroup _memory_group; /**< Function's memory group */
113 std::unique_ptr<IFunction> _sobel; /**< Sobel function */
114 std::unique_ptr<CLHarrisScoreKernel> _harris_score; /**< Harris score kernel */
115 CLNonMaximaSuppression3x3 _non_max_suppr; /**< Non-maxima suppression function */
116 CPPCornerCandidatesKernel _candidates; /**< Sort kernel */
117 CPPSortEuclideanDistanceKernel _sort_euclidean; /**< Euclidean distance kernel */
118 std::unique_ptr<CLFillBorderKernel> _border_gx; /**< Border handler before running harris score */
119 std::unique_ptr<CLFillBorderKernel> _border_gy; /**< Border handler before running harris score */
120 CLImage _gx; /**< Source image - Gx component */
121 CLImage _gy; /**< Source image - Gy component */
122 CLImage _score; /**< Source image - Harris score */
123 CLImage _nonmax; /**< Source image - Non-Maxima suppressed image */
124 std::vector<InternalKeypoint> _corners_list; /**< Array of InternalKeypoint. It stores the potential corner candidates */
125 int32_t _num_corner_candidates; /**< Number of potential corner candidates */
126 ICLKeyPointArray *_corners; /**< Output corners array */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100127};
128}
Michalis Spyrouf4643372019-11-29 16:17:13 +0000129#endif /*ARM_COMPUTE_CLHARRISCORNERS_H */