blob: 70f324be11215df59444e144ec3f3a7c657d9c03 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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_CLGAUSSIANPYRAMID_H
25#define ARM_COMPUTE_CLGAUSSIANPYRAMID_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/CL/kernels/CLGaussianPyramidKernel.h"
28
29#include "arm_compute/core/CL/kernels/CLScaleKernel.h"
30#include "arm_compute/core/IPyramid.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/runtime/CL/CLPyramid.h"
33#include "arm_compute/runtime/CL/functions/CLGaussian5x5.h"
34#include "arm_compute/runtime/IFunction.h"
35
36#include <cstdint>
37#include <memory>
38
39namespace arm_compute
40{
41class ICLTensor;
42
Georgios Pinitas26014cf2019-09-09 19:00:57 +010043/** Common interface for all Gaussian pyramid functions */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044class CLGaussianPyramid : public IFunction
45{
46public:
47 /** Constructor */
48 CLGaussianPyramid();
49 /** Prevent instances of this class from being copied (As this class contains pointers) */
50 CLGaussianPyramid(const CLGaussianPyramid &) = delete;
51 /** Prevent instances of this class from being copied (As this class contains pointers) */
52 CLGaussianPyramid &operator=(const CLGaussianPyramid &) = delete;
53 /** Allow instances of this class to be moved */
54 CLGaussianPyramid(CLGaussianPyramid &&) = default;
55 /** Allow instances of this class to be moved */
56 CLGaussianPyramid &operator=(CLGaussianPyramid &&) = default;
57 /** Default destructor */
58 virtual ~CLGaussianPyramid() = default;
59 /** Initialise the function's source, destinations and border mode.
60 *
61 * @param[in, out] input Source tensor. Data types supported: U8. (Written to only for @p border_mode != UNDEFINED)
62 * @param[out] pyramid Destination pyramid tensors, Data types supported at each level: U8.
63 * @param[in] border_mode Border mode to use.
64 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
65 *
66 */
67 virtual void configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value = 0) = 0;
Manuel Bottini2b84be52020-04-08 10:15:51 +010068 /** Initialise the function's source, destinations and border mode.
69 *
70 * @param[in] compile_context The compile context to be used.
71 * @param[in, out] input Source tensor. Data types supported: U8. (Written to only for @p border_mode != UNDEFINED)
72 * @param[out] pyramid Destination pyramid tensors, Data types supported at each level: U8.
73 * @param[in] border_mode Border mode to use.
74 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
75 *
76 */
77 virtual void configure(const CLCompileContext &compile_context, ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value = 0) = 0;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078
79protected:
80 ICLTensor *_input;
81 CLPyramid *_pyramid;
82 CLPyramid _tmp;
83};
84
85/** Basic function to execute gaussian pyramid with HALF scale factor. This function calls the following OpenCL kernels:
86 *
87 * -# @ref CLFillBorderKernel (executed if border_mode == CONSTANT or border_mode == REPLICATE)
88 * -# @ref CLGaussianPyramidHorKernel
89 * -# @ref CLGaussianPyramidVertKernel
90 */
91class CLGaussianPyramidHalf : public CLGaussianPyramid
92{
93public:
94 /** Constructor */
95 CLGaussianPyramidHalf();
96
97 // Inherited methods overridden:
98 void configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
Manuel Bottini2b84be52020-04-08 10:15:51 +010099 void configure(const CLCompileContext &compile_context, ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100 void run() override;
101
102private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100103 std::vector<CLFillBorderKernel> _horizontal_border_handler;
104 std::vector<CLFillBorderKernel> _vertical_border_handler;
105 std::vector<CLGaussianPyramidHorKernel> _horizontal_reduction;
106 std::vector<CLGaussianPyramidVertKernel> _vertical_reduction;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107};
108
109/** Basic function to execute gaussian pyramid with ORB scale factor. This function calls the following OpenCL kernels and functions:
110 *
111 * -# @ref CLFillBorderKernel (executed if border_mode == CONSTANT or border_mode == REPLICATE)
112 * -# @ref CLGaussian5x5
113 * -# @ref CLScaleKernel
114 */
115class CLGaussianPyramidOrb : public CLGaussianPyramid
116{
117public:
118 /** Constructor */
119 CLGaussianPyramidOrb();
120
121 // Inherited methods overridden:
122 void configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
Manuel Bottini2b84be52020-04-08 10:15:51 +0100123 void configure(const CLCompileContext &compile_context, ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124 void run() override;
125
126private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100127 std::vector<CLGaussian5x5> _gauss5x5;
128 std::vector<CLScaleKernel> _scale_nearest;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129};
130}
Michalis Spyrouf4643372019-11-29 16:17:13 +0000131#endif /*ARM_COMPUTE_CLGAUSSIANPYRAMID_H */