21 Image(
const unsigned w,
const unsigned h) :
22 width_(
w), height_(
h), owned_data_(
new T[
w *
h]), data_ptr_(owned_data_.get())
24 assert(width_ > 0 && height_ > 0);
35 assert(width_ > 0 && height_ > 0);
48 return data_ptr_[
idx];
53 return data_ptr_[
idx];
58 return data_ptr_[
x +
y * width_];
63 return data_ptr_[
x +
y * width_];
68 return width_ * height_;
109 std::unique_ptr<T[]> owned_data_;
122 std::numeric_limits<float>::max());
157#include "impl/image_impl.hpp"
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