blob: 49c1c41e6d9d92610e548f926f033a2226a55e37 [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_NESOBEL5x5KERNEL_H__
25#define __ARM_COMPUTE_NESOBEL5x5KERNEL_H__
26
27#include "arm_compute/core/NEON/INEKernel.h"
28
29namespace arm_compute
30{
31class ITensor;
32
33/** Interface for the kernel to run the horizontal pass of 5x5 Sobel filter on a tensor.
34 *
35 */
36class NESobel5x5HorKernel : public INEKernel
37{
38public:
39 /** Default constructor */
40 NESobel5x5HorKernel();
41 /** Prevent instances of this class from being copied (As this class contains pointers) */
42 NESobel5x5HorKernel(const NESobel5x5HorKernel &) = delete;
43 /** Prevent instances of this class from being copied (As this class contains pointers) */
44 NESobel5x5HorKernel &operator=(const NESobel5x5HorKernel &) = delete;
45 /** Allow instances of this class to be moved */
46 NESobel5x5HorKernel(NESobel5x5HorKernel &&) = default;
47 /** Allow instances of this class to be moved */
48 NESobel5x5HorKernel &operator=(NESobel5x5HorKernel &&) = default;
49 /** Default destructor */
50 ~NESobel5x5HorKernel() = default;
51
52 /** Initialise the kernel's source, destination and border mode.
53 *
54 * @note At least one of output_x or output_y must be set
55 *
56 * @param[in] input Source tensor. Data type supported: U8.
57 * @param[out] output_x (Optional) Destination tensor for the X gradient. Data type supported: S16.
58 * @param[out] output_y (Optional) Destination tensor for the Y gradient. Data type supported: S16.
59 * @param[in] border_undefined True if the border mode is undefined. False if it's replicate or constant.
60 */
61 void configure(const ITensor *input, ITensor *output_x, ITensor *output_y, bool border_undefined);
62
63 // Inherited methods overridden:
64 void run(const Window &window) override;
65 BorderSize border_size() const override;
66
67private:
68 const ITensor *_input; /**< Input tensor */
69 ITensor *_output_x; /**< X output of horizontal pass */
70 ITensor *_output_y; /**< Y output of horizontal pass */
71 bool _run_sobel_x; /**< Do we need to run Sobel X? */
72 bool _run_sobel_y; /**< Do we need to run Sobel Y? */
73 BorderSize _border_size; /**< Border size */
74};
75
76/** Interface for the kernel to run the vertical pass of 5x5 Sobel Y filter on a tensor.
77 *
78*/
79class NESobel5x5VertKernel : public INEKernel
80{
81public:
82 /** Default constructor */
83 NESobel5x5VertKernel();
84 /** Prevent instances of this class from being copied (As this class contains pointers) */
85 NESobel5x5VertKernel(const NESobel5x5VertKernel &) = delete;
86 /** Prevent instances of this class from being copied (As this class contains pointers) */
87 NESobel5x5VertKernel &operator=(const NESobel5x5VertKernel &) = delete;
88 /** Allow instances of this class to be moved */
89 NESobel5x5VertKernel(NESobel5x5VertKernel &&) = default;
90 /** Allow instances of this class to be moved */
91 NESobel5x5VertKernel &operator=(NESobel5x5VertKernel &&) = default;
92 /** Default destructor */
93 ~NESobel5x5VertKernel() = default;
94
95 /** Initialise the kernel's source, destination and border mode.
96 *
97 * @param[in] input_x Input for X (X output of hor pass). Data type supported: S16.
98 * @param[in] input_y Input for Y (Y output of hor pass). Data type supported: S16.
99 * @param[out] output_x Destination tensor for the X gradient. Data type supported: S16.
100 * @param[out] output_y Destination tensor for the Y gradient. Data type supported: S16.
101 * @param[in] border_undefined True if the border mode is undefined. False if it's replicate or constant.
102 */
103 void configure(ITensor *input_x, ITensor *input_y, ITensor *output_x, ITensor *output_y, bool border_undefined);
104
105 // Inherited methods overridden:
106 void run(const Window &window) override;
107 BorderSize border_size() const override;
108
109private:
110 ITensor *_input_x; /**< X input (X output of the hor pass) */
111 ITensor *_input_y; /**< Y input (Y output of the hor pass) */
112 ITensor *_output_x; /**< X output of sobel */
113 ITensor *_output_y; /**< Y output of sobel */
114 bool _run_sobel_x; /**< Do we need to run sobel X? */
115 bool _run_sobel_y; /**< Do we need to run sobel Y? */
116};
117}
118#endif /*__ARM_COMPUTE_NESOBEL5x5KERNEL_H__ */