blob: aa90a5d4e3c86d6f6e84af2c6d54d95f2907c5fb [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyroubcfd09a2019-05-01 13:03:59 +01002 * Copyright (c) 2017-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_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;
68
69protected:
70 ICLTensor *_input;
71 CLPyramid *_pyramid;
72 CLPyramid _tmp;
73};
74
75/** Basic function to execute gaussian pyramid with HALF scale factor. This function calls the following OpenCL kernels:
76 *
77 * -# @ref CLFillBorderKernel (executed if border_mode == CONSTANT or border_mode == REPLICATE)
78 * -# @ref CLGaussianPyramidHorKernel
79 * -# @ref CLGaussianPyramidVertKernel
80 */
81class CLGaussianPyramidHalf : public CLGaussianPyramid
82{
83public:
84 /** Constructor */
85 CLGaussianPyramidHalf();
86
87 // Inherited methods overridden:
88 void configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
89 void run() override;
90
91private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010092 std::vector<CLFillBorderKernel> _horizontal_border_handler;
93 std::vector<CLFillBorderKernel> _vertical_border_handler;
94 std::vector<CLGaussianPyramidHorKernel> _horizontal_reduction;
95 std::vector<CLGaussianPyramidVertKernel> _vertical_reduction;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096};
97
98/** Basic function to execute gaussian pyramid with ORB scale factor. This function calls the following OpenCL kernels and functions:
99 *
100 * -# @ref CLFillBorderKernel (executed if border_mode == CONSTANT or border_mode == REPLICATE)
101 * -# @ref CLGaussian5x5
102 * -# @ref CLScaleKernel
103 */
104class CLGaussianPyramidOrb : public CLGaussianPyramid
105{
106public:
107 /** Constructor */
108 CLGaussianPyramidOrb();
109
110 // Inherited methods overridden:
111 void configure(ICLTensor *input, CLPyramid *pyramid, BorderMode border_mode, uint8_t constant_border_value) override;
112 void run() override;
113
114private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +0100115 std::vector<CLGaussian5x5> _gauss5x5;
116 std::vector<CLScaleKernel> _scale_nearest;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117};
118}
Michalis Spyrouf4643372019-11-29 16:17:13 +0000119#endif /*ARM_COMPUTE_CLGAUSSIANPYRAMID_H */