Point Cloud Library (PCL)
1.14.1-dev
|
#include <pcl/common/generate.h>
Public Types | |
using | GeneratorParameters = typename GeneratorT::Parameters |
Public Member Functions | |
CloudGenerator () | |
Default constructor. More... | |
CloudGenerator (const GeneratorParameters ¶ms) | |
Constructor with single generator to ensure all X, Y and Z values are within same range. More... | |
CloudGenerator (const GeneratorParameters &x_params, const GeneratorParameters &y_params, const GeneratorParameters &z_params) | |
Constructor with independent generators per axis. More... | |
void | setParameters (const GeneratorParameters ¶ms) |
Set parameters for x, y and z values. More... | |
void | setParametersForX (const GeneratorParameters &x_params) |
Set parameters for x values generation. More... | |
void | setParametersForY (const GeneratorParameters &y_params) |
Set parameters for y values generation. More... | |
void | setParametersForZ (const GeneratorParameters &z_params) |
Set parameters for z values generation. More... | |
const GeneratorParameters & | getParametersForX () const |
const GeneratorParameters & | getParametersForY () const |
const GeneratorParameters & | getParametersForZ () const |
PointT | get () |
int | fill (pcl::PointCloud< PointT > &cloud) |
Generates a cloud with X Y Z picked within given ranges. More... | |
int | fill (int width, int height, pcl::PointCloud< PointT > &cloud) |
Generates a cloud of specified dimensions with X Y Z picked within given ranges. More... | |
Definition at line 58 of file generate.h.
using pcl::common::CloudGenerator< PointT, GeneratorT >::GeneratorParameters = typename GeneratorT::Parameters |
Definition at line 61 of file generate.h.
pcl::common::CloudGenerator< PointT, GeneratorT >::CloudGenerator |
Default constructor.
Definition at line 53 of file generate.hpp.
pcl::common::CloudGenerator< PointT, GeneratorT >::CloudGenerator | ( | const GeneratorParameters & | params | ) |
Constructor with single generator to ensure all X, Y and Z values are within same range.
params | parameters for X, Y and Z values generation. Uniqueness is ensured through seed incrementation |
Definition at line 61 of file generate.hpp.
pcl::common::CloudGenerator< PointT, GeneratorT >::CloudGenerator | ( | const GeneratorParameters & | x_params, |
const GeneratorParameters & | y_params, | ||
const GeneratorParameters & | z_params | ||
) |
Constructor with independent generators per axis.
x_params | parameters for x values generation |
y_params | parameters for y values generation |
z_params | parameters for z values generation |
Definition at line 68 of file generate.hpp.
int pcl::common::CloudGenerator< PointT, GeneratorT >::fill | ( | int | width, |
int | height, | ||
pcl::PointCloud< PointT > & | cloud | ||
) |
Generates a cloud of specified dimensions with X Y Z picked within given ranges.
[in] | width | width of generated cloud |
[in] | height | height of generated cloud |
[out] | cloud | output cloud |
Definition at line 151 of file generate.hpp.
References pcl::PointCloud< PointT >::empty(), pcl::PointCloud< PointT >::height, pcl::PointCloud< PointT >::is_dense, pcl::PointCloud< PointT >::resize(), and pcl::PointCloud< PointT >::width.
int pcl::common::CloudGenerator< PointT, GeneratorT >::fill | ( | pcl::PointCloud< PointT > & | cloud | ) |
Generates a cloud with X Y Z picked within given ranges.
This function assumes that cloud is properly defined else it raises errors and does nothing.
[out] | cloud | cloud to generate coordinates for |
Definition at line 144 of file generate.hpp.
References pcl::PointCloud< PointT >::height, and pcl::PointCloud< PointT >::width.
Referenced by pcl::common::CloudGenerator< pcl::PointXY, GeneratorT >::fill().
PointT pcl::common::CloudGenerator< PointT, GeneratorT >::get |
Definition at line 133 of file generate.hpp.
const CloudGenerator< PointT, GeneratorT >::GeneratorParameters & pcl::common::CloudGenerator< PointT, GeneratorT >::getParametersForX |
Definition at line 112 of file generate.hpp.
const CloudGenerator< PointT, GeneratorT >::GeneratorParameters & pcl::common::CloudGenerator< PointT, GeneratorT >::getParametersForY |
Definition at line 119 of file generate.hpp.
const CloudGenerator< PointT, GeneratorT >::GeneratorParameters & pcl::common::CloudGenerator< PointT, GeneratorT >::getParametersForZ |
Definition at line 126 of file generate.hpp.
void pcl::common::CloudGenerator< PointT, GeneratorT >::setParameters | ( | const GeneratorParameters & | params | ) |
Set parameters for x, y and z values.
Uniqueness is ensured through seed incrementation.
params | parameters for X, Y and Z values generation. |
Definition at line 78 of file generate.hpp.
Referenced by pcl::common::CloudGenerator< pcl::PointXY, GeneratorT >::CloudGenerator().
void pcl::common::CloudGenerator< PointT, GeneratorT >::setParametersForX | ( | const GeneratorParameters & | x_params | ) |
Set parameters for x values generation.
x_params | parameters for x values generation |
Definition at line 91 of file generate.hpp.
void pcl::common::CloudGenerator< PointT, GeneratorT >::setParametersForY | ( | const GeneratorParameters & | y_params | ) |
Set parameters for y values generation.
y_params | parameters for y values generation |
Definition at line 98 of file generate.hpp.
void pcl::common::CloudGenerator< PointT, GeneratorT >::setParametersForZ | ( | const GeneratorParameters & | z_params | ) |
Set parameters for z values generation.
z_params | parameters for z values generation |
Definition at line 105 of file generate.hpp.