blob: b2956d81993207184c4206278bab9d762b4bf64c [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrouf4643372019-11-29 16:17:13 +00002 * Copyright (c) 2016-2019 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_NEHARRISCORNERSKERNEL_H
25#define ARM_COMPUTE_NEHARRISCORNERSKERNEL_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/CPP/kernels/CPPCornerCandidatesKernel.h"
28#include "arm_compute/core/CPP/kernels/CPPSortEuclideanDistanceKernel.h"
29#include "arm_compute/core/IArray.h"
30#include "arm_compute/core/NEON/INEKernel.h"
31
32#include <cstdint>
33#include <mutex>
34
35namespace arm_compute
36{
37class ITensor;
38using IImage = ITensor;
39
40/** Common interface for all Harris Score kernels */
41class INEHarrisScoreKernel : public INEKernel
42{
43public:
44 /** Default constructor */
45 INEHarrisScoreKernel();
46 /** Prevent instances of this class from being copied (As this class contains pointers) */
47 INEHarrisScoreKernel(const INEHarrisScoreKernel &) = delete;
48 /** Prevent instances of this class from being copied (As this class contains pointers) */
49 INEHarrisScoreKernel &operator=(const INEHarrisScoreKernel &) = delete;
50 /** Allow instances of this class to be moved */
51 INEHarrisScoreKernel(INEHarrisScoreKernel &&) = default;
52 /** Allow instances of this class to be moved */
53 INEHarrisScoreKernel &operator=(INEHarrisScoreKernel &&) = default;
54 /** Default destructor */
55 ~INEHarrisScoreKernel() = default;
56
57public:
58 /** Setup the kernel parameters
59 *
60 * @param[in] input1 Source image (gradient X). Data types supported: S16/S32
61 * @param[in] input2 Source image (gradient Y). Data types supported: same as @ input1
62 * @param[out] output Destination image (harris score). Data types supported: F32
63 * @param[in] norm_factor Normalization factor to use accordingly with the gradient size (Must be different from 0)
64 * @param[in] strength_thresh Minimum threshold with which to eliminate Harris Corner scores (computed using the normalized Sobel kernel).
65 * @param[in] sensitivity Sensitivity threshold k from the Harris-Stephens equation
66 * @param[in] border_undefined True if the border mode is undefined. False if it's replicate or constant.
67 */
68 virtual void configure(const IImage *input1, const IImage *input2, IImage *output, float norm_factor, float strength_thresh, float sensitivity, bool border_undefined) = 0;
69
70protected:
71 const IImage *_input1; /**< Source image - Gx component */
72 const IImage *_input2; /**< Source image - Gy component */
73 IImage *_output; /**< Source image - Harris score */
74 float _sensitivity; /**< Sensitivity value */
75 float _strength_thresh; /**< Threshold value */
76 float _norm_factor; /**< Normalization factor */
77 BorderSize _border_size; /**< Border size */
78};
79
80/** Template NEON kernel to perform Harris Score.
81 * The implementation supports 3, 5, and 7 for the block_size
82 */
83template <int32_t block_size>
84class NEHarrisScoreKernel : public INEHarrisScoreKernel
85{
86public:
Anthony Barbiere8a49832018-01-18 10:04:05 +000087 const char *name() const override
88 {
89 return "NEHarrisScoreKernel";
90 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091 /** Default constructor */
92 NEHarrisScoreKernel();
93 // Inherited methods overridden:
94 void configure(const IImage *input1, const IImage *input2, IImage *output, float norm_factor, float strength_thresh, float sensitivity, bool border_undefined) override;
95 BorderSize border_size() const override;
Moritz Pflanzerc186b572017-09-07 09:48:04 +010096 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097
98private:
99 /** Common signature for all the specialised harris score functions */
100 using HarrisScoreFunction = void(const void *__restrict input1_ptr, const void *__restrict input2_ptr, void *__restrict output_ptr, int32_t input_stride,
101 float norm_factor, float sensitivity, float strength_thresh);
102 /** Harris Score function to use for the particular image types passed to configure() */
103 HarrisScoreFunction *_func;
104};
Gian Marco Iodice356f6432017-09-22 11:32:21 +0100105} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000106#endif /* ARM_COMPUTE_NEHARRISCORNERSKERNEL_H */