supereight
Loading...
Searching...
No Matches
image.hpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016-2019 Emanuele Vespa
3 * SPDX-FileCopyrightText: 2021-2023 Smart Robotics Lab, Imperial College London, Technical University of Munich
4 * SPDX-FileCopyrightText: 2021 Nils Funk
5 * SPDX-FileCopyrightText: 2021-2023 Sotiris Papatheodorou
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#ifndef SE_IMAGE_HPP
10#define SE_IMAGE_HPP
11
12#include <cassert>
13#include <memory>
15
16namespace se {
17
18template<typename T>
19class Image {
20 public:
21 Image(const unsigned w, const unsigned h) :
22 width_(w), height_(h), owned_data_(new T[w * h]), data_ptr_(owned_data_.get())
23 {
24 assert(width_ > 0 && height_ > 0);
25 }
26
27 Image(const unsigned w, const unsigned h, const T& value) : Image(w, h)
28 {
29 std::fill(data(), data() + size(), value);
30 }
31
32 Image(const unsigned w, const unsigned h, T* raw_buffer) :
33 width_(w), height_(h), data_ptr_(raw_buffer)
34 {
35 assert(width_ > 0 && height_ > 0);
36 }
37
38 Image(const Image& other) = delete;
39
40 Image(Image&& other) = default;
41
42 Image& operator=(const Image& other) = delete;
43
44 Image& operator=(Image&& other) = default;
45
46 T& operator[](std::size_t idx)
47 {
48 return data_ptr_[idx];
49 }
50
51 const T& operator[](std::size_t idx) const
52 {
53 return data_ptr_[idx];
54 }
55
56 T& operator()(const int x, const int y)
57 {
58 return data_ptr_[x + y * width_];
59 }
60
61 const T& operator()(const int x, const int y) const
62 {
63 return data_ptr_[x + y * width_];
64 }
65
66 std::size_t size() const
67 {
68 return width_ * height_;
69 }
70
71 int width() const
72 {
73 return width_;
74 }
75
76 int height() const
77 {
78 return height_;
79 }
80
81 const T* data() const
82 {
83 return data_ptr_;
84 }
85
87 {
88 return data_ptr_;
89 }
90
91 Image clone() const
92 {
93 if (owned_data_) {
94 // Perform a deep copy of the owned data.
96 std::copy(data(), data() + size(), image_copy.data());
97 return image_copy;
98 }
99 else {
100 // Wrap the non-owned data. The constructor accepting a non-const pointer to non-owned
101 // data so it's always save to cast away the const of non-owned data().
102 return Image(width(), height(), const_cast<T*>(data()));
103 }
104 }
105
106 private:
107 int width_;
108 int height_;
109 std::unique_ptr<T[]> owned_data_;
110 T* data_ptr_;
111};
112
113
114
117{
120 Eigen::Vector2i(input_depth_img.width(), input_depth_img.height()),
121 0,
122 std::numeric_limits<float>::max());
123}
124
125
126
138
139
140
141namespace image {
142
146template<typename T>
147void remap(const Image<T>& input, Image<T>& output, const Image<size_t>& map);
148
149void rgb_to_rgba(const Image<RGB>& rgb, Image<RGBA>& rgba);
150
151void rgba_to_rgb(const Image<RGBA>& rgba, Image<RGB>& rgb);
152
153} // namespace image
154
155} // end namespace se
156
157#include "impl/image_impl.hpp"
158
159#endif // SE_IMAGE_HPP
Definition image.hpp:19
Image(const Image &other)=delete
T & operator()(const int x, const int y)
Definition image.hpp:56
T * data()
Definition image.hpp:86
Image(const unsigned w, const unsigned h, const T &value)
Definition image.hpp:27
Image & operator=(Image &&other)=default
const T * data() const
Definition image.hpp:81
Image & operator=(const Image &other)=delete
int height() const
Definition image.hpp:76
const T & operator()(const int x, const int y) const
Definition image.hpp:61
Image(const unsigned w, const unsigned h)
Definition image.hpp:21
std::size_t size() const
Definition image.hpp:66
int width() const
Definition image.hpp:71
Image(const unsigned w, const unsigned h, T *raw_buffer)
Definition image.hpp:32
T & operator[](std::size_t idx)
Definition image.hpp:46
Image clone() const
Definition image.hpp:91
Image(Image &&other)=default
const T & operator[](std::size_t idx) const
Definition image.hpp:51
Helper wrapper to allocate and de-allocate octants in the octree.
Definition bounded_vector.hpp:14
void depth_to_rgba(RGBA *depth_RGBA_image_data, const float *depth_image_data, const Eigen::Vector2i &depth_image_res, const float min_depth, const float max_depth)
Convert a depth image to an RGBA image to allow visualizing it.
static void convert_to_output_depth_img(const se::Image< float > &input_depth_img, RGBA *output_depth_img_data)
Definition image.hpp:115
A colour represented as a Red-Green-Blue-Alpha tuple with 8-bits per channel.
Definition rgba.hpp:15