Point Cloud Library (PCL) 1.12.0
Loading...
Searching...
No Matches
pcl::PCLPointCloud2 Struct Reference

#include <pcl/PCLPointCloud2.h>

+ Collaboration diagram for pcl::PCLPointCloud2:

Public Types

using Ptr = shared_ptr< ::pcl::PCLPointCloud2>
 
using ConstPtr = shared_ptr<const ::pcl::PCLPointCloud2>
 

Public Member Functions

PCLPointCloud2operator+= (const PCLPointCloud2 &rhs)
 Add a point cloud to the current cloud.
 
PCLPointCloud2 operator+ (const PCLPointCloud2 &rhs)
 Add a point cloud to another cloud.
 

Static Public Member Functions

static bool concatenate (pcl::PCLPointCloud2 &cloud1, const pcl::PCLPointCloud2 &cloud2)
 Inplace concatenate two pcl::PCLPointCloud2.
 
static bool concatenate (const PCLPointCloud2 &cloud1, const PCLPointCloud2 &cloud2, PCLPointCloud2 &cloud_out)
 Concatenate two pcl::PCLPointCloud2.
 

Public Attributes

::pcl::PCLHeader header
 
uindex_t height = 0
 
uindex_t width = 0
 
std::vector<::pcl::PCLPointFieldfields
 
std::uint8_t is_bigendian = BOOST_ENDIAN_BIG_BYTE
 
uindex_t point_step = 0
 
uindex_t row_step = 0
 
std::vector< std::uint8_t > data
 
std::uint8_t is_dense = 0
 

Detailed Description

Definition at line 16 of file PCLPointCloud2.h.

Member Typedef Documentation

◆ ConstPtr

Definition at line 36 of file PCLPointCloud2.h.

◆ Ptr

Definition at line 35 of file PCLPointCloud2.h.

Member Function Documentation

◆ concatenate() [1/2]

static bool pcl::PCLPointCloud2::concatenate ( const PCLPointCloud2 & cloud1,
const PCLPointCloud2 & cloud2,
PCLPointCloud2 & cloud_out )
inlinestatic

Concatenate two pcl::PCLPointCloud2.

Parameters
[in]cloud1the first input point cloud dataset
[in]cloud2the second input point cloud dataset
[out]cloud_outthe resultant output point cloud dataset
Returns
true if successful, false if failed (e.g., name/number of fields differs)

Definition at line 64 of file PCLPointCloud2.h.

References pcl::concatenate().

◆ concatenate() [2/2]

static bool pcl::PCLPointCloud2::concatenate ( pcl::PCLPointCloud2 & cloud1,
const pcl::PCLPointCloud2 & cloud2 )
static

Inplace concatenate two pcl::PCLPointCloud2.

IFF the layout of all the fields in both the clouds is the same, this command doesn't remove any fields named "_" (aka marked as skip). For comparison of field names, "rgb" and "rgba" are considered equivalent However, if the order and/or number of non-skip fields is different, the skip fields are dropped and non-skip fields copied selectively. This function returns an error if

  • the total number of non-skip fields is different
  • the non-skip field names are named differently (excluding "rbg{a}") in serial order
  • the endian-ness of both clouds is different
    Parameters
    [in,out]cloud1the first input and output point cloud dataset
    [in]cloud2the second input point cloud dataset
    Returns
    true if successful, false if failed (e.g., name/number of fields differs)

Referenced by pcl::concatenate(), and pcl::PolygonMesh::concatenate().

◆ operator+()

PCLPointCloud2 pcl::PCLPointCloud2::operator+ ( const PCLPointCloud2 & rhs)
inline

Add a point cloud to another cloud.

Parameters
[in]rhsthe cloud to add to the current cloud
Returns
the new cloud as a concatenation of the current cloud and the new given cloud

Definition at line 84 of file PCLPointCloud2.h.

◆ operator+=()

PCLPointCloud2 & pcl::PCLPointCloud2::operator+= ( const PCLPointCloud2 & rhs)

Add a point cloud to the current cloud.

Parameters
[in]rhsthe cloud to add to the current cloud
Returns
the new cloud as a concatenation of the current cloud and the new given cloud

Member Data Documentation

◆ data

◆ fields

◆ header

::pcl::PCLHeader pcl::PCLPointCloud2::header

◆ height

◆ is_bigendian

std::uint8_t pcl::PCLPointCloud2::is_bigendian = BOOST_ENDIAN_BIG_BYTE

Definition at line 26 of file PCLPointCloud2.h.

◆ is_dense

std::uint8_t pcl::PCLPointCloud2::is_dense = 0

◆ point_step

◆ row_step

uindex_t pcl::PCLPointCloud2::row_step = 0

Definition at line 28 of file PCLPointCloud2.h.

Referenced by pcl::fromPCLPointCloud2(), and pcl::toPCLPointCloud2().

◆ width


The documentation for this struct was generated from the following file: