blob: 79d82af462cfd4a66d820b7dde38b4c5a0d9dd23 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 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#ifndef __ARM_COMPUTE_CLFASTCORNERS_H__
25#define __ARM_COMPUTE_CLFASTCORNERS_H__
26
27#include "arm_compute/core/CL/OpenCL.h"
28#include "arm_compute/core/CL/kernels/CLFastCornersKernel.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Window.h"
31#include "arm_compute/runtime/CL/CLArray.h"
32#include "arm_compute/runtime/CL/CLTensor.h"
33#include "arm_compute/runtime/CL/functions/CLNonMaximaSuppression3x3.h"
34#include "arm_compute/runtime/IFunction.h"
35
36#include <cstdint>
37
38namespace arm_compute
39{
40class ICLTensor;
41using ICLImage = ICLTensor;
42
43/** Basic function to execute fast corners. This function calls the following CL kernels:
44 *
45 * -# @ref CLFastCornersKernel
46 * -# @ref CLNonMaximaSuppression3x3Kernel (executed if nonmax_suppression == true)
47 * -# @ref CLCopyToArrayKernel
48 *
49 */
50class CLFastCorners : public IFunction
51{
52public:
53 /** Constructor */
54 CLFastCorners();
55 /** Prevent instances of this class from being copied (As this class contains pointers) */
56 CLFastCorners(const CLFastCorners &) = delete;
57 /** Prevent instances of this class from being copied (As this class contains pointers) */
58 const CLFastCorners &operator=(const CLFastCorners &) = delete;
59 /** Initialize the function's source, destination, conv and border_mode.
60 *
61 * @param[in] input Source image. Data types supported: U8.
62 * @param[in] threshold Threshold on difference between intensity of the central pixel and pixels on Bresenham's circle of radius 3.
63 * @param[in] nonmax_suppression If true, non-maximum suppression is applied to detected corners before being placed in the array.
64 * @param[out] corners Array of keypoints to store the results.
65 * @param[in,out] num_corners Record number of corners in the array
66 * @param[in] border_mode Strategy to use for borders.
67 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
68 */
69 void configure(const ICLImage *input, float threshold, bool nonmax_suppression, CLKeyPointArray *corners, unsigned int *num_corners,
70 BorderMode border_mode, uint8_t constant_border_value = 0);
71 // Inherited methods overridden:
72 void run() override;
73
74private:
75 CLFastCornersKernel _fast_corners_kernel;
76 CLNonMaximaSuppression3x3 _suppr_func;
77 CLCopyToArrayKernel _copy_array_kernel;
78 CLImage _output;
79 CLImage _suppr;
80 Window _win;
81 bool _non_max;
82 unsigned int *_num_corners;
83 cl::Buffer _num_buffer;
84 CLKeyPointArray *_corners;
85 uint8_t _constant_border_value;
86};
87}
88#endif /*__ARM_COMPUTE_CLFASTCORNERS_H__ */