Main MRPT website > C++ reference for MRPT 1.9.9
List of all members | Public Types | Public Member Functions | Static Public Attributes | Private Attributes
mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > > Class Reference

Detailed Description

Specialization mrpt::opengl::PointCloudAdapter<pcl::PointCloud<pcl::PointXYZRGB> > for an XYZ point cloud with RGB.

Definition at line 87 of file PCL_adapters.h.

#include <mrpt/maps/PCL_adapters.h>

Public Types

using coords_t = float
 The type of each point XYZ coordinates. More...
 

Public Member Functions

 PointCloudAdapter (const pcl::PointCloud< pcl::PointXYZRGB > &obj)
 Constructor (accept a const ref for convenience) More...
 
size_t size () const
 Get number of points. More...
 
void resize (const size_t N)
 Set number of points (to uninitialized values) More...
 
template<typename T >
void getPointXYZ (const size_t idx, T &x, T &y, T &z) const
 Get XYZ coordinates of i'th point. More...
 
void setPointXYZ (const size_t idx, const coords_t x, const coords_t y, const coords_t z)
 Set XYZ coordinates of i'th point. More...
 
template<typename T >
void getPointXYZ_RGBf (const size_t idx, T &x, T &y, T &z, float &r, float &g, float &b) const
 Get XYZ_RGBf coordinates of i'th point. More...
 
void setPointXYZ_RGBf (const size_t idx, const coords_t x, const coords_t y, const coords_t z, const float r, const float g, const float b)
 Set XYZ_RGBf coordinates of i'th point. More...
 
template<typename T >
void getPointXYZ_RGBu8 (const size_t idx, T &x, T &y, T &z, uint8_t &r, uint8_t &g, uint8_t &b) const
 Get XYZ_RGBu8 coordinates of i'th point. More...
 
void setPointXYZ_RGBu8 (const size_t idx, const coords_t x, const coords_t y, const coords_t z, const uint8_t r, const uint8_t g, const uint8_t b)
 Set XYZ_RGBu8 coordinates of i'th point. More...
 
void getPointRGBf (const size_t idx, float &r, float &g, float &b) const
 Get RGBf color of i'th point. More...
 
void setPointRGBf (const size_t idx, const float r, const float g, const float b)
 Set XYZ_RGBf coordinates of i'th point. More...
 
void getPointRGBu8 (const size_t idx, uint8_t &r, uint8_t &g, uint8_t &b) const
 Get RGBu8 color of i'th point. More...
 
void setPointRGBu8 (const size_t idx, const uint8_t r, const uint8_t g, const uint8_t b)
 Set RGBu8 coordinates of i'th point. More...
 

Static Public Attributes

static const int HAS_RGB = 1
 Has any color RGB info? More...
 
static const int HAS_RGBf = 0
 Has native RGB info (as floats)? More...
 
static const int HAS_RGBu8 = 1
 Has native RGB info (as uint8_t)? More...
 

Private Attributes

pcl::PointCloud< pcl::PointXYZRGB > & m_obj
 

Member Typedef Documentation

◆ coords_t

using mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::coords_t = float

The type of each point XYZ coordinates.

Definition at line 94 of file PCL_adapters.h.

Constructor & Destructor Documentation

◆ PointCloudAdapter()

mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::PointCloudAdapter ( const pcl::PointCloud< pcl::PointXYZRGB > &  obj)
inline

Constructor (accept a const ref for convenience)

Definition at line 103 of file PCL_adapters.h.

Member Function Documentation

◆ getPointRGBf()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::getPointRGBf ( const size_t  idx,
float &  r,
float &  g,
float &  b 
) const
inline

Get RGBf color of i'th point.

Definition at line 187 of file PCL_adapters.h.

◆ getPointRGBu8()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::getPointRGBu8 ( const size_t  idx,
uint8_t r,
uint8_t g,
uint8_t b 
) const
inline

Get RGBu8 color of i'th point.

Definition at line 206 of file PCL_adapters.h.

◆ getPointXYZ()

template<typename T >
void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::getPointXYZ ( const size_t  idx,
T &  x,
T &  y,
T &  z 
) const
inline

Get XYZ coordinates of i'th point.

Definition at line 113 of file PCL_adapters.h.

◆ getPointXYZ_RGBf()

template<typename T >
void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::getPointXYZ_RGBf ( const size_t  idx,
T &  x,
T &  y,
T &  z,
float &  r,
float &  g,
float &  b 
) const
inline

Get XYZ_RGBf coordinates of i'th point.

Definition at line 133 of file PCL_adapters.h.

◆ getPointXYZ_RGBu8()

template<typename T >
void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::getPointXYZ_RGBu8 ( const size_t  idx,
T &  x,
T &  y,
T &  z,
uint8_t r,
uint8_t g,
uint8_t b 
) const
inline

Get XYZ_RGBu8 coordinates of i'th point.

Definition at line 160 of file PCL_adapters.h.

◆ resize()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::resize ( const size_t  N)
inline

Set number of points (to uninitialized values)

Definition at line 110 of file PCL_adapters.h.

◆ setPointRGBf()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::setPointRGBf ( const size_t  idx,
const float  r,
const float  g,
const float  b 
)
inline

Set XYZ_RGBf coordinates of i'th point.

Definition at line 196 of file PCL_adapters.h.

◆ setPointRGBu8()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::setPointRGBu8 ( const size_t  idx,
const uint8_t  r,
const uint8_t  g,
const uint8_t  b 
)
inline

Set RGBu8 coordinates of i'th point.

Definition at line 215 of file PCL_adapters.h.

◆ setPointXYZ()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::setPointXYZ ( const size_t  idx,
const coords_t  x,
const coords_t  y,
const coords_t  z 
)
inline

Set XYZ coordinates of i'th point.

Definition at line 121 of file PCL_adapters.h.

◆ setPointXYZ_RGBf()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::setPointXYZ_RGBf ( const size_t  idx,
const coords_t  x,
const coords_t  y,
const coords_t  z,
const float  r,
const float  g,
const float  b 
)
inline

Set XYZ_RGBf coordinates of i'th point.

Definition at line 145 of file PCL_adapters.h.

◆ setPointXYZ_RGBu8()

void mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::setPointXYZ_RGBu8 ( const size_t  idx,
const coords_t  x,
const coords_t  y,
const coords_t  z,
const uint8_t  r,
const uint8_t  g,
const uint8_t  b 
)
inline

Set XYZ_RGBu8 coordinates of i'th point.

Definition at line 173 of file PCL_adapters.h.

◆ size()

size_t mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::size ( ) const
inline

Get number of points.

Definition at line 108 of file PCL_adapters.h.

Member Data Documentation

◆ HAS_RGB

const int mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::HAS_RGB = 1
static

Has any color RGB info?

Definition at line 96 of file PCL_adapters.h.

◆ HAS_RGBf

const int mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::HAS_RGBf = 0
static

Has native RGB info (as floats)?

Definition at line 98 of file PCL_adapters.h.

◆ HAS_RGBu8

const int mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::HAS_RGBu8 = 1
static

Has native RGB info (as uint8_t)?

Definition at line 100 of file PCL_adapters.h.

◆ m_obj

pcl::PointCloud<pcl::PointXYZRGB>& mrpt::opengl::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGB > >::m_obj
private

Definition at line 90 of file PCL_adapters.h.




Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST