blob: 42df4b8da1ff0b731ef89b677b7a23b99c7460e4 [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_NECHANNELEXTRACTKERNEL_H__
25#define __ARM_COMPUTE_NECHANNELEXTRACTKERNEL_H__
26
27#include "arm_compute/core/NEON/INESimpleKernel.h"
28#include "arm_compute/core/Types.h"
29
30#include <cstdint>
31
32namespace arm_compute
33{
34class IMultiImage;
35class ITensor;
36using IImage = ITensor;
37
38/** Interface for the channel extract kernel */
39class NEChannelExtractKernel : public INESimpleKernel
40{
41public:
42 /** Default constructor */
43 NEChannelExtractKernel();
44 /** Prevent instances of this class from being copied (As this class contains pointers) */
45 NEChannelExtractKernel(const NEChannelExtractKernel &) = delete;
46 /** Prevent instances of this class from being copied (As this class contains pointers) */
47 NEChannelExtractKernel &operator=(const NEChannelExtractKernel &) = delete;
48 /** Allow instances of this class to be moved */
49 NEChannelExtractKernel(NEChannelExtractKernel &&) = default;
50 /** Allow instances of this class to be moved */
51 NEChannelExtractKernel &operator=(NEChannelExtractKernel &&) = default;
52 /** Default destructor */
53 ~NEChannelExtractKernel() = default;
54
55 /** Set the input and output of the kernel
56 *
57 * @param[in] input Source tensor. Formats supported: RGB888/RGBA8888/YUYV422/UYVY422
58 * @param[in] channel Channel to extract.
59 * @param[out] output Destination tensor. Format supported: u8
60 */
61 void configure(const ITensor *input, Channel channel, ITensor *output);
62 /** Set the input and output of the kernel
63 *
64 * @param[in] input Multi-planar source image. Formats supported: NV12/NV21/IYUV/YUV444
65 * @param[in] channel Channel to extract.
66 * @param[out] output Single-planar destination image. Format supported: U8
67 */
68 void configure(const IMultiImage *input, Channel channel, IImage *output);
69
70 // Inherited methods overridden:
Moritz Pflanzerc186b572017-09-07 09:48:04 +010071 void run(const Window &window, const ThreadInfo &info) override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072
73private:
74 /** Extract one channel from a two channel planar tensor.
75 *
76 * @param[in] win Region on which to execute the kernel.
77 */
78 void extract_1C_from_2C_img(const Window &win);
79 /** Extract one channel from a three channel planar tensor.
80 *
81 * @param[in] win Region on which to execute the kernel.
82 */
83 void extract_1C_from_3C_img(const Window &win);
84 /** Extract one channel from a four channel planar tensor.
85 *
86 * @param[in] win Region on which to execute the kernel.
87 */
88 void extract_1C_from_4C_img(const Window &win);
89 /** Extract U/V channel from a single planar YUVY/UYVY tensor.
90 *
91 * @param[in] win Region on which to execute the kernel.
92 */
93 void extract_YUYV_uv(const Window &win);
94 /** Copies a full plane to the output tensor.
95 *
96 * @param[in] win Region on which to execute the kernel.
97 */
98 void copy_plane(const Window &win);
99 /** Common signature for all the specialised ChannelExtract functions
100 *
101 * @param[in] window Region on which to execute the kernel.
102 */
103 using ChannelExtractFunction = void (NEChannelExtractKernel::*)(const Window &window);
104 /** ChannelExtract function to use for the particular tensor types passed to configure() */
105 ChannelExtractFunction _func;
106 unsigned int _lut_index;
107};
108}
109#endif /* __ARM_COMPUTE_NECHANNELEXTRACTKERNEL_H__ */