forked from dusty-nv/jetson-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageFormat.inl
257 lines (216 loc) · 6.77 KB
/
imageFormat.inl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
* Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef __IMAGE_FORMAT_INLINE_H_
#define __IMAGE_FORMAT_INLINE_H_
#include <strings.h>
#include <type_traits>
// imageFormatToStr
inline const char* imageFormatToStr( imageFormat format )
{
switch(format)
{
case IMAGE_RGB8: return "rgb8";
case IMAGE_RGBA8: return "rgba8";
case IMAGE_RGB32F: return "rgb32f";
case IMAGE_RGBA32F: return "rgba32f";
case IMAGE_BGR8: return "bgr8";
case IMAGE_BGRA8: return "bgra8";
case IMAGE_BGR32F: return "bgr32f";
case IMAGE_BGRA32F: return "bgra32f";
case IMAGE_I420: return "i420";
case IMAGE_YV12: return "yv12";
case IMAGE_NV12: return "nv12";
case IMAGE_UYVY: return "uyvy";
case IMAGE_YUYV: return "yuyv";
case IMAGE_YVYU: return "yvyu";
case IMAGE_BAYER_BGGR: return "bayer-bggr";
case IMAGE_BAYER_GBRG: return "bayer-gbrg";
case IMAGE_BAYER_GRBG: return "bayer-grbg";
case IMAGE_BAYER_RGGB: return "bayer-rggb";
case IMAGE_GRAY8: return "gray8";
case IMAGE_GRAY32F: return "gray32f";
case IMAGE_UNKNOWN: return "unknown";
};
return "unknown";
}
// imageFormatIsRGB
inline bool imageFormatIsRGB( imageFormat format )
{
//if( format == IMAGE_RGB8 || format == IMAGE_RGBA8 || format == IMAGE_RGB32F || format == IMAGE_RGBA32F )
// return true;
if( format >= IMAGE_RGB8 && format <= IMAGE_RGBA32F )
return true;
return false;
}
// imageFormatIsBGR
inline bool imageFormatIsBGR( imageFormat format )
{
if( format >= IMAGE_BGR8 && format <= IMAGE_BGRA32F )
return true;
return false;
}
// imageFormatIsYUV
inline bool imageFormatIsYUV( imageFormat format )
{
if( format >= IMAGE_YUYV && format <= IMAGE_NV12 )
return true;
return false;
}
// imageFormatIsGray
inline bool imageFormatIsGray( imageFormat format )
{
if( format == IMAGE_GRAY8 || format == IMAGE_GRAY32F )
return true;
return false;
}
// imageFormatIsBayer
inline bool imageFormatIsBayer( imageFormat format )
{
//if( format == IMAGE_BAYER_BGGR || format == IMAGE_BAYER_GBRG || format == IMAGE_BAYER_GRBG || format == IMAGE_BAYER_RGGB )
// return true;
if( format >= IMAGE_BAYER_BGGR && format <= IMAGE_BAYER_RGGB )
return true;
return false;
}
// imageFormatFromStr
inline imageFormat imageFormatFromStr( const char* str )
{
if( !str )
return IMAGE_UNKNOWN;
for( uint32_t n=0; n < IMAGE_COUNT; n++ )
{
const imageFormat fmt = (imageFormat)n;
if( strcasecmp(str, imageFormatToStr(fmt)) == 0 )
return fmt;
}
if( strcasecmp(str, "yuy2") == 0 )
return IMAGE_YUY2;
else if( strcasecmp(str, "rgb32") == 0 )
return IMAGE_RGB32F;
else if( strcasecmp(str, "rgba32") == 0 )
return IMAGE_RGBA32F;
else if( strcasecmp(str, "grey8") == 0 )
return IMAGE_GRAY8;
else if( strcasecmp(str, "grey32f") == 0 )
return IMAGE_GRAY32F;
return IMAGE_UNKNOWN;
}
// imageFormatBaseType
inline imageBaseType imageFormatBaseType( imageFormat format )
{
switch(format)
{
case IMAGE_GRAY32F:
case IMAGE_RGB32F:
case IMAGE_BGR32F:
case IMAGE_RGBA32F:
case IMAGE_BGRA32F: return IMAGE_FLOAT;
}
return IMAGE_UINT8;
}
// imageFormatChannels
inline size_t imageFormatChannels( imageFormat format )
{
switch(format)
{
case IMAGE_RGB8:
case IMAGE_RGB32F:
case IMAGE_BGR8:
case IMAGE_BGR32F: return 3;
case IMAGE_RGBA8:
case IMAGE_RGBA32F:
case IMAGE_BGRA8:
case IMAGE_BGRA32F: return 4;
case IMAGE_GRAY8:
case IMAGE_GRAY32F: return 1;
case IMAGE_I420:
case IMAGE_YV12:
case IMAGE_NV12:
case IMAGE_UYVY:
case IMAGE_YUYV:
case IMAGE_YVYU: return 3;
case IMAGE_BAYER_BGGR:
case IMAGE_BAYER_GBRG:
case IMAGE_BAYER_GRBG:
case IMAGE_BAYER_RGGB: return 1;
}
return 0;
}
// imageFormatDepth
inline size_t imageFormatDepth( imageFormat format )
{
switch(format)
{
case IMAGE_RGB8:
case IMAGE_BGR8: return sizeof(uchar3) * 8;
case IMAGE_RGBA8:
case IMAGE_BGRA8: return sizeof(uchar4) * 8;
case IMAGE_RGB32F:
case IMAGE_BGR32F: return sizeof(float3) * 8;
case IMAGE_RGBA32F:
case IMAGE_BGRA32F: return sizeof(float4) * 8;
case IMAGE_GRAY8: return sizeof(unsigned char) * 8;
case IMAGE_GRAY32F: return sizeof(float) * 8;
case IMAGE_I420:
case IMAGE_YV12:
case IMAGE_NV12: return 12;
case IMAGE_UYVY:
case IMAGE_YUYV:
case IMAGE_YVYU: return 16;
case IMAGE_BAYER_BGGR:
case IMAGE_BAYER_GBRG:
case IMAGE_BAYER_GRBG:
case IMAGE_BAYER_RGGB: return sizeof(unsigned char) * 8;
}
return 0;
}
// imageFormatSize
inline size_t imageFormatSize( imageFormat format, size_t width, size_t height )
{
return (width * height * imageFormatDepth(format)) / 8;
}
/**
* @ingroup image
* @internal
*/
template<typename T> struct __image_format_assert_false : std::false_type { };
// imageFormatFromType
template<typename T> inline imageFormat imageFormatFromType()
{
static_assert(__image_format_assert_false<T>::value, "invalid image format type - supported types are uchar3, uchar4, float3, float4");
return IMAGE_UNKNOWN;
}
template<> inline imageFormat imageFormatFromType<uchar3>() { return IMAGE_RGB8; }
template<> inline imageFormat imageFormatFromType<uchar4>() { return IMAGE_RGBA8; }
template<> inline imageFormat imageFormatFromType<float3>() { return IMAGE_RGB32F; }
template<> inline imageFormat imageFormatFromType<float4>() { return IMAGE_RGBA32F; }
// imageFormatErrorMsg
inline void imageFormatErrorMsg( const char* prefix, const char* function, imageFormat format )
{
LogError("%s%s -- unsupported image format (%s)\n", prefix, function, imageFormatToStr(format));
LogError("%s supported formats are:\n", prefix);
LogError("%s * rgb8\n", prefix);
LogError("%s * rgba8\n", prefix);
LogError("%s * rgb32f\n", prefix);
LogError("%s * rgba32f\n", prefix);
}
#endif