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

Detailed Description

template<>
class mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >

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

Definition at line 154 of file maps/PCL_adapters.h.

#include <mrpt/maps/PCL_adapters.h>

Public Types

typedef float coords_t
 The type of each point XYZ coordinates. More...
 

Public Member Functions

 PointCloudAdapter (const pcl::PointCloud< pcl::PointXYZRGBA > &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...
 
void setInvalidPoint (const size_t idx)
 Set Invalid 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::PointXYZRGBA > & m_obj
 

Member Typedef Documentation

◆ coords_t

typedef float mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::coords_t

The type of each point XYZ coordinates.

Definition at line 159 of file maps/PCL_adapters.h.

Constructor & Destructor Documentation

◆ PointCloudAdapter()

mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::PointCloudAdapter ( const pcl::PointCloud< pcl::PointXYZRGBA > &  obj)
inline

Constructor (accept a const ref for convenience)

Definition at line 165 of file maps/PCL_adapters.h.

Member Function Documentation

◆ getPointRGBf()

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

Get RGBf color of i'th point.

Definition at line 220 of file maps/PCL_adapters.h.

◆ getPointRGBu8()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 231 of file maps/PCL_adapters.h.

◆ getPointXYZ()

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

Get XYZ coordinates of i'th point.

Definition at line 173 of file maps/PCL_adapters.h.

◆ getPointXYZ_RGBf()

template<typename T >
void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 193 of file maps/PCL_adapters.h.

◆ getPointXYZ_RGBu8()

template<typename T >
void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 207 of file maps/PCL_adapters.h.

◆ resize()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::resize ( const size_t  N)
inline

Set number of points (to uninitialized values)

Definition at line 169 of file maps/PCL_adapters.h.

◆ setInvalidPoint()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::setInvalidPoint ( const size_t  idx)
inline

Set Invalid Point.

Definition at line 185 of file maps/PCL_adapters.h.

◆ setPointRGBf()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 225 of file maps/PCL_adapters.h.

◆ setPointRGBu8()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 236 of file maps/PCL_adapters.h.

◆ setPointXYZ()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 178 of file maps/PCL_adapters.h.

◆ setPointXYZ_RGBf()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 199 of file maps/PCL_adapters.h.

◆ setPointXYZ_RGBu8()

void mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::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 213 of file maps/PCL_adapters.h.

◆ size()

size_t mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::size ( ) const
inline

Get number of points.

Definition at line 167 of file maps/PCL_adapters.h.

Member Data Documentation

◆ HAS_RGB

const int mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::HAS_RGB = 1
static

Has any color RGB info?

Definition at line 160 of file maps/PCL_adapters.h.

◆ HAS_RGBf

const int mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::HAS_RGBf = 0
static

Has native RGB info (as floats)?

Definition at line 161 of file maps/PCL_adapters.h.

◆ HAS_RGBu8

const int mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::HAS_RGBu8 = 1
static

Has native RGB info (as uint8_t)?

Definition at line 162 of file maps/PCL_adapters.h.

◆ m_obj

pcl::PointCloud<pcl::PointXYZRGBA>& mrpt::utils::PointCloudAdapter< pcl::PointCloud< pcl::PointXYZRGBA > >::m_obj
private

Definition at line 157 of file maps/PCL_adapters.h.




Page generated by Doxygen 1.8.14 for MRPT 1.5.6 Git: 4c65e8431 Tue Apr 24 08:18:17 2018 +0200 at lun oct 28 01:35:26 CET 2019