blob: c5f6608163a88e5af3a891202e9545c497afcc9f [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrouf44e57b2020-01-22 11:07:54 +00002 * Copyright (c) 2016-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_PIXELVALUE_H
25#define ARM_COMPUTE_PIXELVALUE_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Georgios Pinitas583137c2017-08-31 18:12:42 +010027#include "arm_compute/core/Types.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028
Georgios Pinitas583137c2017-08-31 18:12:42 +010029#include <cstdint>
Pablo Tello0c34fe22017-06-26 17:17:42 +010030
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031namespace arm_compute
32{
33/** Class describing the value of a pixel for any image format. */
34class PixelValue
35{
36public:
37 /** Default constructor: value initialized to 0 */
38 PixelValue()
Michalis Spyrouf44e57b2020-01-22 11:07:54 +000039 : value{ int64_t(0) }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040 {
41 }
Manuel Bottinib412fab2018-12-10 17:40:23 +000042 /** Initialize the union with a pixel value of chosen datatype
43 *
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010044 * @param[in] v int value.
45 * @param[in] datatype DataType that @p v have to be stored
Michele Di Giorgio35ea9a72019-08-23 12:02:06 +010046 * @param[in] qinfo (Optional) QuantizationInfo to apply in case of quantized data types to @p v
Manuel Bottinib412fab2018-12-10 17:40:23 +000047 */
Michalis Spyrouf44e57b2020-01-22 11:07:54 +000048 PixelValue(int64_t v, DataType datatype, QuantizationInfo qinfo = QuantizationInfo())
Manuel Bottinib412fab2018-12-10 17:40:23 +000049 : PixelValue()
50 {
51 switch(datatype)
52 {
53 case DataType::U8:
54 value.u8 = static_cast<uint8_t>(v);
55 break;
56 case DataType::S8:
57 value.s8 = static_cast<int8_t>(v);
58 break;
Manuel Bottini1d4f3852019-01-14 15:14:43 +000059 case DataType::QASYMM8:
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010060 value.u8 = quantize_qasymm8(static_cast<uint8_t>(v), qinfo);
61 break;
Georgios Pinitas33843562019-12-10 13:33:18 +000062 case DataType::QASYMM8_SIGNED:
Michalis Spyrouf44e57b2020-01-22 11:07:54 +000063 value.s8 = quantize_qasymm8_signed(static_cast<int8_t>(v), qinfo);
Georgios Pinitas33843562019-12-10 13:33:18 +000064 break;
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010065 case DataType::QSYMM8:
66 value.s8 = quantize_qsymm8(static_cast<int8_t>(v), qinfo);
Manuel Bottini1d4f3852019-01-14 15:14:43 +000067 break;
Manuel Bottinib412fab2018-12-10 17:40:23 +000068 case DataType::U16:
69 value.u16 = static_cast<uint16_t>(v);
70 break;
71 case DataType::S16:
72 value.s16 = static_cast<int16_t>(v);
73 break;
Michele Di Giorgio35ea9a72019-08-23 12:02:06 +010074 case DataType::QASYMM16:
75 value.u16 = quantize_qasymm16(static_cast<uint16_t>(v), qinfo);
76 break;
Manuel Bottini3689fcd2019-06-14 17:18:12 +010077 case DataType::QSYMM16:
78 value.s16 = quantize_qsymm16(static_cast<int16_t>(v), qinfo);
79 break;
Manuel Bottinib412fab2018-12-10 17:40:23 +000080 case DataType::U32:
81 value.u32 = static_cast<uint32_t>(v);
82 break;
83 case DataType::S32:
84 value.s32 = static_cast<int32_t>(v);
85 break;
86 case DataType::U64:
87 value.u64 = static_cast<uint64_t>(v);
88 break;
89 case DataType::S64:
Michalis Spyrouf44e57b2020-01-22 11:07:54 +000090 value.s64 = static_cast<int64_t>(v);
Manuel Bottinib412fab2018-12-10 17:40:23 +000091 break;
92 case DataType::F16:
93 value.f16 = static_cast<half>(v);
94 break;
95 case DataType::F32:
96 value.f32 = static_cast<float>(v);
97 break;
98 case DataType::F64:
99 value.f64 = static_cast<double>(v);
100 break;
101 default:
Michalis Spyrouf44e57b2020-01-22 11:07:54 +0000102 value.s64 = v;
Manuel Bottinib412fab2018-12-10 17:40:23 +0000103 break;
104 }
105 }
Michalis Spyroue7be8a02019-12-12 16:16:09 +0000106 /** Initialize the union with a S8 pixel value
107 *
108 * @param[in] v S8 value.
109 */
110 PixelValue(int8_t v)
111 : PixelValue()
112 {
113 value.s8 = v;
114 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115 /** Initialize the union with a U8 pixel value
116 *
117 * @param[in] v U8 value.
118 */
119 PixelValue(uint8_t v)
120 : PixelValue()
121 {
122 value.u8 = v;
123 }
124 /** Initialize the union with a U16 pixel value
125 *
126 * @param[in] v U16 value.
127 */
128 PixelValue(uint16_t v)
129 : PixelValue()
130 {
131 value.u16 = v;
132 }
133 /** Initialize the union with a S16 pixel value
134 *
135 * @param[in] v S16 value.
136 */
137 PixelValue(int16_t v)
138 : PixelValue()
139 {
140 value.s16 = v;
141 }
142 /** Initialize the union with a U32 pixel value
143 *
144 * @param[in] v U32 value.
145 */
146 PixelValue(uint32_t v)
147 : PixelValue()
148 {
149 value.u32 = v;
150 }
151 /** Initialize the union with a S32 pixel value
152 *
153 * @param[in] v S32 value.
154 */
155 PixelValue(int32_t v)
156 : PixelValue()
157 {
158 value.s32 = v;
159 }
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100160
161 /** Initialize the union with a U64 pixel value
162 *
163 * @param[in] v U64 value.
164 */
165 PixelValue(uint64_t v)
166 : PixelValue()
167 {
168 value.u64 = v;
169 }
170 /** Initialize the union with a S64 pixel value
171 *
172 * @param[in] v S64 value.
173 */
174 PixelValue(int64_t v)
175 : PixelValue()
176 {
177 value.s64 = v;
178 }
Pablo Tello0c34fe22017-06-26 17:17:42 +0100179 /** Initialize the union with a F16 pixel value
180 *
181 * @param[in] v F16 value.
182 */
Georgios Pinitas583137c2017-08-31 18:12:42 +0100183 PixelValue(half v)
Pablo Tello0c34fe22017-06-26 17:17:42 +0100184 : PixelValue()
185 {
186 value.f16 = v;
187 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100188 /** Initialize the union with a F32 pixel value
189 *
190 * @param[in] v F32 value.
191 */
192 PixelValue(float v)
193 : PixelValue()
194 {
195 value.f32 = v;
196 }
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100197 /** Initialize the union with a F64 pixel value
198 *
199 * @param[in] v F64 value.
200 */
201 PixelValue(double v)
202 : PixelValue()
203 {
204 value.f64 = v;
205 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206 /** Union which describes the value of a pixel for any image format.
207 * Use the field corresponding to the image format
208 */
209 union
210 {
giuros0191a73f32018-09-21 12:23:44 +0100211 uint64_t u64; /**< Single channel U64 */
212 int64_t s64; /**< Single channel S64 */
Georgios Pinitas583137c2017-08-31 18:12:42 +0100213 uint8_t rgb[3]; /**< 3 channels: RGB888 */
214 uint8_t yuv[3]; /**< 3 channels: Any YUV format */
215 uint8_t rgbx[4]; /**< 4 channels: RGBX8888 */
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100216 double f64; /**< Single channel double */
Georgios Pinitas583137c2017-08-31 18:12:42 +0100217 float f32; /**< Single channel float 32 */
218 half f16; /**< Single channel F16 */
219 uint8_t u8; /**< Single channel U8 */
220 int8_t s8; /**< Single channel S8 */
221 uint16_t u16; /**< Single channel U16 */
222 int16_t s16; /**< Single channel S16 */
223 uint32_t u32; /**< Single channel U32 */
224 int32_t s32; /**< Single channel S32 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100225 } value;
226 /** Interpret the pixel value as a U8
227 *
228 * @param[out] v Returned value
229 */
230 void get(uint8_t &v) const
231 {
232 v = value.u8;
233 }
234 /** Interpret the pixel value as a S8
235 *
236 * @param[out] v Returned value
237 */
238 void get(int8_t &v) const
239 {
240 v = value.s8;
241 }
242 /** Interpret the pixel value as a U16
243 *
244 * @param[out] v Returned value
245 */
246 void get(uint16_t &v) const
247 {
248 v = value.u16;
249 }
250 /** Interpret the pixel value as a S16
251 *
252 * @param[out] v Returned value
253 */
254 void get(int16_t &v) const
255 {
256 v = value.s16;
257 }
258 /** Interpret the pixel value as a U32
259 *
260 * @param[out] v Returned value
261 */
262 void get(uint32_t &v) const
263 {
264 v = value.u32;
265 }
266 /** Interpret the pixel value as a S32
267 *
268 * @param[out] v Returned value
269 */
270 void get(int32_t &v) const
271 {
272 v = value.s32;
273 }
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100274 /** Interpret the pixel value as a U64
275 *
276 * @param[out] v Returned value
277 */
278 void get(uint64_t &v) const
279 {
280 v = value.u64;
281 }
282 /** Interpret the pixel value as a S64
283 *
284 * @param[out] v Returned value
285 */
286 void get(int64_t &v) const
287 {
288 v = value.s64;
289 }
Pablo Tello0c34fe22017-06-26 17:17:42 +0100290 /** Interpret the pixel value as a F16
291 *
292 * @param[out] v Returned value
293 */
Georgios Pinitas583137c2017-08-31 18:12:42 +0100294 void get(half &v) const
Pablo Tello0c34fe22017-06-26 17:17:42 +0100295 {
296 v = value.f16;
297 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100298 /** Interpret the pixel value as a F32
299 *
300 * @param[out] v Returned value
301 */
302 void get(float &v) const
303 {
304 v = value.f32;
305 }
Michalis Spyrou53b405f2017-09-27 15:55:31 +0100306 /** Interpret the pixel value as a double
307 *
308 * @param[out] v Returned value
309 */
310 void get(double &v) const
311 {
312 v = value.f64;
313 }
314 /** Get the pixel value
315 *
316 * @return Pixel value
317 */
318 template <typename T>
319 T get() const
320 {
321 T val;
322 get(val);
323 return val;
324 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100325};
Georgios Pinitas33843562019-12-10 13:33:18 +0000326} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000327#endif /* ARM_COMPUTE_PIXELVALUE_H */