Gazebo Common

API Reference

4.7.0
gz/common/Image.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef IGNITION_COMMON_IMAGE_HH_
18 #define IGNITION_COMMON_IMAGE_HH_
19 
20 #include <cstring>
21 #include <limits>
22 #include <memory>
23 #include <string>
24 #include <vector>
25 #include <gz/math/Color.hh>
26 
27 #include <gz/common/config.hh>
28 #include <gz/common/graphics/Export.hh>
29 
30 #include <ignition/utils/ImplPtr.hh>
31 
32 namespace ignition
33 {
34  namespace common
35  {
39  {
40  "UNKNOWN_PIXEL_FORMAT",
41  "L_INT8",
42  "L_INT16",
43  "RGB_INT8",
44  "RGBA_INT8",
45  "BGRA_INT8",
46  "RGB_INT16",
47  "RGB_INT32",
48  "BGR_INT8",
49  "BGR_INT16",
50  "BGR_INT32",
51  "R_FLOAT16",
52  "RGB_FLOAT16",
53  "R_FLOAT32",
54  "RGB_FLOAT32",
55  "BAYER_RGGB8",
56  "BAYER_BGGR8",
57  "BAYER_GBRG8",
58  "BAYER_GRBG8"
59  };
60 
63  class IGNITION_COMMON_GRAPHICS_VISIBLE Image
64  {
66  public: enum PixelFormatType
67  {
68  UNKNOWN_PIXEL_FORMAT = 0,
87  PIXEL_FORMAT_COUNT
88  };
89 
90 
94  public: static Image::PixelFormatType ConvertPixelFormat(
95  const std::string &_format);
96 
99  public: explicit Image(const std::string &_filename = "");
100 
102  public: virtual ~Image();
103 
107  public: int Load(const std::string &_filename);
108 
111  public: void SavePNG(const std::string &_filename);
112 
115  public: void SavePNGToBuffer(std::vector<unsigned char> &_buffer);
116 
122  public: void SetFromData(const unsigned char *_data,
123  unsigned int _width,
124  unsigned int _height,
125  Image::PixelFormatType _format);
126 
130  public: void Data(unsigned char **_data, unsigned int &_count);
131 
136  public: void RGBData(unsigned char **_data, unsigned int &_count);
137 
140  public: unsigned int Width() const;
141 
144  public: unsigned int Height() const;
145 
148  public: unsigned int BPP() const;
149 
150  // \brief Get the size of a row of pixel
152  public: int Pitch() const;
153 
156  public: std::string Filename() const;
157 
160  public: PixelFormatType PixelFormat() const;
161 
166  public: math::Color Pixel(const unsigned int _x,
167  const unsigned int _y) const;
168 
171  public: math::Color AvgColor();
172 
175  public: math::Color MaxColor() const;
176 
180  public: void Rescale(const int _width, const int _height);
181 
184  public: bool Valid() const;
185 
202  public: template<typename T>
203  static void ConvertToRGBImage(const void *_data,
204  unsigned int _width, unsigned int _height, Image &_output,
205  T _min = std::numeric_limits<T>::max(),
206  T _max = std::numeric_limits<T>::lowest(), bool _flip = false)
207  {
208  unsigned int samples = _width * _height;
209  unsigned int bufferSize = samples * sizeof(T);
210 
211  auto buffer = std::vector<T>(samples);
212  memcpy(buffer.data(), _data, bufferSize);
213 
214  auto outputRgbBuffer = std::vector<uint8_t>(samples * 3);
215 
216  // use min and max values found in the data if not specified
217  T min = std::numeric_limits<T>::max();
219  if (_min > max)
220  {
221  for (unsigned int i = 0; i < samples; ++i)
222  {
223  auto v = buffer[i];
224  // ignore inf values when computing min/max
225  // cast to float when calling isinf to avoid compile error on
226  // windows
227  if (v > max && !std::isinf(static_cast<float>(v)))
228  max = v;
229  if (v < min && !std::isinf(static_cast<float>(v)))
230  min = v;
231  }
232  }
233  min = math::equal(_min, std::numeric_limits<T>::max()) ? min : _min;
234  max = math::equal(_max, std::numeric_limits<T>::lowest()) ? max : _max;
235 
236  // convert to rgb image
237  // color is grayscale, i.e. r == b == g
238  double range = static_cast<double>(max - min);
239  if (ignition::math::equal(range, 0.0))
240  range = 1.0;
241  unsigned int idx = 0;
242  for (unsigned int j = 0; j < _height; ++j)
243  {
244  for (unsigned int i = 0; i < _width; ++i)
245  {
246  auto v = buffer[idx++];
247  double t = static_cast<double>(v - min) / range;
248  if (_flip)
249  t = 1.0 - t;
250  uint8_t r = static_cast<uint8_t>(255*t);
251  unsigned int outIdx = j * _width * 3 + i * 3;
252  outputRgbBuffer[outIdx] = r;
253  outputRgbBuffer[outIdx + 1] = r;
254  outputRgbBuffer[outIdx + 2] = r;
255  }
256  }
257  _output.SetFromData(outputRgbBuffer.data(), _width, _height, RGB_INT8);
258  }
259 
261  IGN_UTILS_IMPL_PTR(dataPtr)
262  };
263  }
264 }
265 #endif
Forward declarations for the common classes.
STL class.
@ BGR_INT8
Definition: gz/common/Image.hh:76
bool equal(const T &_a, const T &_b, const T &_epsilon=T(1e-6))
@ L_INT8
Definition: gz/common/Image.hh:69
@ RGBA_INT8
Definition: gz/common/Image.hh:72
STL class.
@ L_INT16
Definition: gz/common/Image.hh:70
@ BAYER_RGGB8
Definition: gz/common/Image.hh:83
@ BGR_INT16
Definition: gz/common/Image.hh:77
@ BAYER_BGGR8
Definition: gz/common/Image.hh:84
static std::string PixelFormatNames[]
String names for the pixel formats.
Definition: gz/common/Image.hh:38
T lowest(T... args)
@ BAYER_GBRG8
Definition: gz/common/Image.hh:85
void SetFromData(const unsigned char *_data, unsigned int _width, unsigned int _height, Image::PixelFormatType _format)
Set the image from raw data.
static void ConvertToRGBImage(const void *_data, unsigned int _width, unsigned int _height, Image &_output, T _min=std::numeric_limits< T >::max(), T _max=std::numeric_limits< T >::lowest(), bool _flip=false)
Convert a single channel image data buffer into an RGB image. During the conversion,...
Definition: gz/common/Image.hh:203
@ BGR_INT32
Definition: gz/common/Image.hh:78
@ RGB_INT16
Definition: gz/common/Image.hh:74
T isinf(T... args)
@ RGB_INT32
Definition: gz/common/Image.hh:75
@ RGB_FLOAT32
Definition: gz/common/Image.hh:82
@ RGB_FLOAT16
Definition: gz/common/Image.hh:80
@ RGB_INT8
Definition: gz/common/Image.hh:71
@ BAYER_GRBG8
Definition: gz/common/Image.hh:86
@ R_FLOAT16
Definition: gz/common/Image.hh:79
@ BGRA_INT8
Definition: gz/common/Image.hh:73
T max(T... args)
@ R_FLOAT32
Definition: gz/common/Image.hh:81
PixelFormatType
Pixel formats enumeration.
Definition: gz/common/Image.hh:66
Encapsulates an image.
Definition: gz/common/Image.hh:63