|
Point Cloud Library (PCL) 1.12.1
|
VoxelGrid assembles a local 3D grid over a given PointCloud, and downsamples + filters the data. More...
#include <pcl/filters/voxel_grid.h>
Inheritance diagram for pcl::VoxelGrid< pcl::PCLPointCloud2 >:
Collaboration diagram for pcl::VoxelGrid< pcl::PCLPointCloud2 >:Public Types | |
| using | Ptr |
| using | ConstPtr |
Public Types inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| using | Ptr = shared_ptr<Filter<pcl::PCLPointCloud2> > |
| using | ConstPtr = shared_ptr<const Filter<pcl::PCLPointCloud2> > |
| using | PCLPointCloud2 = pcl::PCLPointCloud2 |
| using | PCLPointCloud2Ptr = PCLPointCloud2::Ptr |
| using | PCLPointCloud2ConstPtr = PCLPointCloud2::ConstPtr |
| using | Ptr |
| using | ConstPtr |
| using | PointCloud |
| using | PointCloudPtr |
| using | PointCloudConstPtr |
Public Types inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| using | PCLPointCloud2 = pcl::PCLPointCloud2 |
| using | PCLPointCloud2Ptr = PCLPointCloud2::Ptr |
| using | PCLPointCloud2ConstPtr = PCLPointCloud2::ConstPtr |
| using | PointIndicesPtr = PointIndices::Ptr |
| using | PointIndicesConstPtr = PointIndices::ConstPtr |
| using | PointCloud |
| using | PointCloudPtr |
| using | PointCloudConstPtr |
| using | PointIndicesPtr |
| using | PointIndicesConstPtr |
Public Member Functions | |
| VoxelGrid () | |
| Empty constructor. | |
| ~VoxelGrid () | |
| Destructor. | |
| void | setLeafSize (const Eigen::Vector4f &leaf_size) |
| Set the voxel grid leaf size. | |
| void | setLeafSize (float lx, float ly, float lz) |
| Set the voxel grid leaf size. | |
| Eigen::Vector3f | getLeafSize () const |
| Get the voxel grid leaf size. | |
| void | setDownsampleAllData (bool downsample) |
| Set to true if all fields need to be downsampled, or false if just XYZ. | |
| bool | getDownsampleAllData () const |
| Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ). | |
| void | setMinimumPointsNumberPerVoxel (unsigned int min_points_per_voxel) |
| Set the minimum number of points required for a voxel to be used. | |
| unsigned int | getMinimumPointsNumberPerVoxel () const |
| Return the minimum number of points required for a voxel to be used. | |
| void | setSaveLeafLayout (bool save_leaf_layout) |
| Set to true if leaf layout information needs to be saved for later access. | |
| bool | getSaveLeafLayout () const |
| Returns true if leaf layout information will to be saved for later access. | |
| Eigen::Vector3i | getMinBoxCoordinates () const |
| Get the minimum coordinates of the bounding box (after filtering is performed). | |
| Eigen::Vector3i | getMaxBoxCoordinates () const |
| Get the minimum coordinates of the bounding box (after filtering is performed). | |
| Eigen::Vector3i | getNrDivisions () const |
| Get the number of divisions along all 3 axes (after filtering is performed). | |
| Eigen::Vector3i | getDivisionMultiplier () const |
| Get the multipliers to be applied to the grid coordinates in order to find the centroid index (after filtering is performed). | |
| int | getCentroidIndex (float x, float y, float z) const |
| Returns the index in the resulting downsampled cloud of the specified point. | |
| std::vector< int > | getNeighborCentroidIndices (float x, float y, float z, const Eigen::MatrixXi &relative_coordinates) const |
| Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds). | |
| std::vector< int > | getNeighborCentroidIndices (float x, float y, float z, const std::vector< Eigen::Vector3i, Eigen::aligned_allocator< Eigen::Vector3i > > &relative_coordinates) const |
| Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds). | |
| std::vector< int > | getLeafLayout () const |
| Returns the layout of the leafs for fast access to cells relative to current position. | |
| Eigen::Vector3i | getGridCoordinates (float x, float y, float z) const |
| Returns the corresponding (i,j,k) coordinates in the grid of point (x,y,z). | |
| int | getCentroidIndexAt (const Eigen::Vector3i &ijk) const |
| Returns the index in the downsampled cloud corresponding to a given set of coordinates. | |
| void | setFilterFieldName (const std::string &field_name) |
| Provide the name of the field to be used for filtering data. | |
| std::string const | getFilterFieldName () const |
| Get the name of the field used for filtering. | |
| void | setFilterLimits (const double &limit_min, const double &limit_max) |
| Set the field filter limits. | |
| void | getFilterLimits (double &limit_min, double &limit_max) const |
| Get the field filter limits (min/max) set by the user. | |
| void | setFilterLimitsNegative (const bool limit_negative) |
| Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max). | |
| void | getFilterLimitsNegative (bool &limit_negative) const |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). | |
| bool | getFilterLimitsNegative () const |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). | |
| VoxelGrid () | |
| Empty constructor. | |
| ~VoxelGrid () | |
| Destructor. | |
| void | setLeafSize (const Eigen::Vector4f &leaf_size) |
| Set the voxel grid leaf size. | |
| void | setLeafSize (float lx, float ly, float lz) |
| Set the voxel grid leaf size. | |
| Eigen::Vector3f | getLeafSize () const |
| Get the voxel grid leaf size. | |
| void | setDownsampleAllData (bool downsample) |
| Set to true if all fields need to be downsampled, or false if just XYZ. | |
| bool | getDownsampleAllData () const |
| Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ). | |
| void | setMinimumPointsNumberPerVoxel (unsigned int min_points_per_voxel) |
| Set the minimum number of points required for a voxel to be used. | |
| unsigned int | getMinimumPointsNumberPerVoxel () const |
| Return the minimum number of points required for a voxel to be used. | |
| void | setSaveLeafLayout (bool save_leaf_layout) |
| Set to true if leaf layout information needs to be saved for later access. | |
| bool | getSaveLeafLayout () const |
| Returns true if leaf layout information will to be saved for later access. | |
| Eigen::Vector3i | getMinBoxCoordinates () const |
| Get the minimum coordinates of the bounding box (after filtering is performed). | |
| Eigen::Vector3i | getMaxBoxCoordinates () const |
| Get the minimum coordinates of the bounding box (after filtering is performed). | |
| Eigen::Vector3i | getNrDivisions () const |
| Get the number of divisions along all 3 axes (after filtering is performed). | |
| Eigen::Vector3i | getDivisionMultiplier () const |
| Get the multipliers to be applied to the grid coordinates in order to find the centroid index (after filtering is performed). | |
| int | getCentroidIndex (const pcl::PCLPointCloud2 &p) const |
| Returns the index in the resulting downsampled cloud of the specified point. | |
| std::vector< int > | getNeighborCentroidIndices (const pcl::PCLPointCloud2 &reference_point, const Eigen::MatrixXi &relative_coordinates) const |
| Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds). | |
| std::vector< int > | getLeafLayout () const |
| Returns the layout of the leafs for fast access to cells relative to current position. | |
| Eigen::Vector3i | getGridCoordinates (float x, float y, float z) const |
| Returns the corresponding (i,j,k) coordinates in the grid of point (x,y,z). | |
| int | getCentroidIndexAt (const Eigen::Vector3i &ijk) const |
| Returns the index in the downsampled cloud corresponding to a given set of coordinates. | |
| void | setFilterFieldName (const std::string &field_name) |
| Provide the name of the field to be used for filtering data. | |
| std::string const | getFilterFieldName () const |
| Get the name of the field used for filtering. | |
| void | setFilterLimits (const double &limit_min, const double &limit_max) |
| Set the field filter limits. | |
| void | getFilterLimits (double &limit_min, double &limit_max) const |
| Get the field filter limits (min/max) set by the user. | |
| void | setFilterLimitsNegative (const bool limit_negative) |
| Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max). | |
| void | getFilterLimitsNegative (bool &limit_negative) const |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). | |
| bool | getFilterLimitsNegative () const |
| Get whether the data outside the interval (min/max) is to be returned (true) or inside (false). | |
Public Member Functions inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| Filter (bool extract_removed_indices=false) | |
| Empty constructor. | |
| IndicesConstPtr const | getRemovedIndices () const |
| Get the point indices being removed. | |
| void | getRemovedIndices (PointIndices &pi) |
| Get the point indices being removed. | |
| void | filter (PCLPointCloud2 &output) |
| Calls the filtering method and returns the filtered dataset in output. | |
| Filter (bool extract_removed_indices=false) | |
| Empty constructor. | |
| IndicesConstPtr const | getRemovedIndices () const |
| Get the point indices being removed. | |
| void | getRemovedIndices (PointIndices &pi) |
| Get the point indices being removed. | |
| void | filter (PointCloud &output) |
| Calls the filtering method and returns the filtered dataset in output. | |
Public Member Functions inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| PCLBase () | |
| Empty constructor. | |
| virtual | ~PCLBase ()=default |
| destructor. | |
| void | setInputCloud (const PCLPointCloud2ConstPtr &cloud) |
| Provide a pointer to the input dataset. | |
| PCLPointCloud2ConstPtr const | getInputCloud () const |
| Get a pointer to the input point cloud dataset. | |
| void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| IndicesPtr const | getIndices () const |
| Get a pointer to the vector of indices used. | |
| PCLBase () | |
| Empty constructor. | |
| PCLBase (const PCLBase &base) | |
| Copy constructor. | |
| virtual | ~PCLBase ()=default |
| Destructor. | |
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Provide a pointer to the input dataset. | |
| PointCloudConstPtr const | getInputCloud () const |
| Get a pointer to the input point cloud dataset. | |
| virtual void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| virtual void | setIndices (const IndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| virtual void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. | |
| virtual void | setIndices (std::size_t row_start, std::size_t col_start, std::size_t nb_rows, std::size_t nb_cols) |
| Set the indices for the points laying within an interest region of the point cloud. | |
| IndicesPtr | getIndices () |
| Get a pointer to the vector of indices used. | |
| IndicesConstPtr const | getIndices () const |
| Get a pointer to the vector of indices used. | |
| const pcl::PCLPointCloud2 & | operator[] (std::size_t pos) const |
| Override PointCloud operator[] to shorten code. | |
Protected Types | |
| using | PointCloud |
| using | PointCloudPtr |
| using | PointCloudConstPtr |
| using | FieldList |
Protected Member Functions | |
| void | applyFilter (PCLPointCloud2 &output) override |
| Downsample a Point Cloud using a voxelized grid approach. | |
| void | applyFilter (PointCloud &output) override |
| Downsample a Point Cloud using a voxelized grid approach. | |
Protected Member Functions inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| const std::string & | getClassName () const |
| Get a string representation of the name of this class. | |
| virtual void | applyFilter (PointCloud &output)=0 |
| Abstract filter method. | |
| const std::string & | getClassName () const |
| Get a string representation of the name of this class. | |
Protected Member Functions inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| bool | initCompute () |
| bool | deinitCompute () |
| bool | initCompute () |
| This method should get called before starting the actual computation. | |
| bool | deinitCompute () |
| This method should get called after finishing the actual computation. | |
Protected Attributes | |
| Eigen::Vector4f | leaf_size_ |
| The size of a leaf. | |
| Eigen::Array4f | inverse_leaf_size_ |
| Internal leaf sizes stored as 1/leaf_size_ for efficiency reasons. | |
| bool | downsample_all_data_ |
| Set to true if all fields need to be downsampled, or false if just XYZ. | |
| bool | save_leaf_layout_ |
| Set to true if leaf layout information needs to be saved in leaf_layout. | |
| std::vector< int > | leaf_layout_ |
| The leaf layout information for fast access to cells relative to current position. | |
| Eigen::Vector4i | min_b_ |
| The minimum and maximum bin coordinates, the number of divisions, and the division multiplier. | |
| Eigen::Vector4i | max_b_ |
| Eigen::Vector4i | div_b_ |
| Eigen::Vector4i | divb_mul_ |
| std::string | filter_field_name_ |
| The desired user filter field name. | |
| double | filter_limit_min_ |
| The minimum allowed filter value a point will be considered from. | |
| double | filter_limit_max_ |
| The maximum allowed filter value a point will be considered from. | |
| bool | filter_limit_negative_ |
| Set to true if we want to return the data outside (filter_limit_min_;filter_limit_max_). | |
| unsigned int | min_points_per_voxel_ |
| Minimum number of points per voxel for the centroid to be computed. | |
| Eigen::Vector4f | leaf_size_ |
| The size of a leaf. | |
| Eigen::Array4f | inverse_leaf_size_ |
| Internal leaf sizes stored as 1/leaf_size_ for efficiency reasons. | |
| bool | downsample_all_data_ |
| Set to true if all fields need to be downsampled, or false if just XYZ. | |
| bool | save_leaf_layout_ |
| Set to true if leaf layout information needs to be saved in leaf_layout_. | |
| std::vector< int > | leaf_layout_ |
| The leaf layout information for fast access to cells relative to current position. | |
| Eigen::Vector4i | min_b_ |
| The minimum and maximum bin coordinates, the number of divisions, and the division multiplier. | |
| Eigen::Vector4i | max_b_ |
| Eigen::Vector4i | div_b_ |
| Eigen::Vector4i | divb_mul_ |
| std::string | filter_field_name_ |
| The desired user filter field name. | |
| double | filter_limit_min_ |
| The minimum allowed filter value a point will be considered from. | |
| double | filter_limit_max_ |
| The maximum allowed filter value a point will be considered from. | |
| bool | filter_limit_negative_ |
| Set to true if we want to return the data outside (filter_limit_min_;filter_limit_max_). | |
| unsigned int | min_points_per_voxel_ |
| Minimum number of points per voxel for the centroid to be computed. | |
Protected Attributes inherited from pcl::Filter< pcl::PCLPointCloud2 > | |
| IndicesPtr | removed_indices_ |
| Indices of the points that are removed. | |
| bool | extract_removed_indices_ |
| Set to true if we want to return the indices of the removed points. | |
| std::string | filter_name_ |
| The filter name. | |
| IndicesPtr | removed_indices_ |
| Indices of the points that are removed. | |
| std::string | filter_name_ |
| The filter name. | |
| bool | extract_removed_indices_ |
| Set to true if we want to return the indices of the removed points. | |
Protected Attributes inherited from pcl::PCLBase< pcl::PCLPointCloud2 > | |
| PCLPointCloud2ConstPtr | input_ |
| The input point cloud dataset. | |
| IndicesPtr | indices_ |
| A pointer to the vector of point indices to use. | |
| bool | use_indices_ |
| Set to true if point indices are used. | |
| bool | fake_indices_ |
| If no set of indices are given, we construct a set of fake indices that mimic the input PointCloud. | |
| std::vector< uindex_t > | field_sizes_ |
| The size of each individual field. | |
| index_t | x_idx_ |
| The x-y-z fields indices. | |
| index_t | y_idx_ |
| index_t | z_idx_ |
| std::string | x_field_name_ |
| The desired x-y-z field names. | |
| std::string | y_field_name_ |
| std::string | z_field_name_ |
| PointCloudConstPtr | input_ |
| The input point cloud dataset. | |
| IndicesPtr | indices_ |
| A pointer to the vector of point indices to use. | |
| bool | use_indices_ |
| Set to true if point indices are used. | |
| bool | fake_indices_ |
| If no set of indices are given, we construct a set of fake indices that mimic the input PointCloud. | |
VoxelGrid assembles a local 3D grid over a given PointCloud, and downsamples + filters the data.
The VoxelGrid class creates a 3D voxel grid (think about a voxel grid as a set of tiny 3D boxes in space) over the input point cloud data. Then, in each voxel (i.e., 3D box), all the points present will be approximated (i.e., downsampled) with their centroid. This approach is a bit slower than approximating them with the center of the voxel, but it represents the underlying surface more accurately.
Definition at line 510 of file voxel_grid.h.
| using pcl::VoxelGrid< pcl::PCLPointCloud2 >::ConstPtr |
Definition at line 191 of file voxel_grid.h.
|
protected |
Definition at line 488 of file voxel_grid.h.
|
protected |
Definition at line 184 of file voxel_grid.h.
|
protected |
Definition at line 186 of file voxel_grid.h.
|
protected |
Definition at line 185 of file voxel_grid.h.
| using pcl::VoxelGrid< pcl::PCLPointCloud2 >::Ptr |
Definition at line 190 of file voxel_grid.h.
|
inline |
Empty constructor.
Definition at line 521 of file voxel_grid.h.
References div_b_, divb_mul_, downsample_all_data_, filter_field_name_, filter_limit_max_, filter_limit_min_, filter_limit_negative_, pcl::Filter< pcl::PCLPointCloud2 >::filter_name_, inverse_leaf_size_, leaf_size_, max_b_, min_b_, min_points_per_voxel_, and save_leaf_layout_.
|
inline |
Destructor.
Definition at line 540 of file voxel_grid.h.
|
inline |
Empty constructor.
Definition at line 194 of file voxel_grid.h.
|
inline |
Destructor.
Definition at line 213 of file voxel_grid.h.
|
overrideprotectedvirtual |
Downsample a Point Cloud using a voxelized grid approach.
| [out] | output | the resultant point cloud |
Implements pcl::Filter< pcl::PCLPointCloud2 >.
|
overrideprotected |
Downsample a Point Cloud using a voxelized grid approach.
| [out] | output | the resultant point cloud message |
Definition at line 494 of file voxel_grid.hpp.
|
inline |
Returns the index in the resulting downsampled cloud of the specified point.
| [in] | p | the point to get the index at |
Definition at line 317 of file voxel_grid.h.
|
inline |
Returns the index in the resulting downsampled cloud of the specified point.
| [in] | x | the X point coordinate to get the index at |
| [in] | y | the Y point coordinate to get the index at |
| [in] | z | the Z point coordinate to get the index at |
Definition at line 643 of file voxel_grid.h.
References divb_mul_, inverse_leaf_size_, leaf_layout_, and min_b_.
|
inline |
Returns the index in the downsampled cloud corresponding to a given set of coordinates.
| [in] | ijk | the coordinates (i,j,k) in the grid (-1 if empty) |
Definition at line 374 of file voxel_grid.h.
|
inline |
Returns the index in the downsampled cloud corresponding to a given set of coordinates.
| [in] | ijk | the coordinates (i,j,k) in the grid (-1 if empty) |
Definition at line 723 of file voxel_grid.h.
References divb_mul_, leaf_layout_, and min_b_.
|
inline |
Get the multipliers to be applied to the grid coordinates in order to find the centroid index (after filtering is performed).
Definition at line 306 of file voxel_grid.h.
|
inline |
Get the multipliers to be applied to the grid coordinates in order to find the centroid index (after filtering is performed).
Definition at line 633 of file voxel_grid.h.
References divb_mul_.
|
inline |
Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ).
Definition at line 261 of file voxel_grid.h.
|
inline |
Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ).
Definition at line 588 of file voxel_grid.h.
References downsample_all_data_.
|
inline |
Get the name of the field used for filtering.
Definition at line 398 of file voxel_grid.h.
|
inline |
Get the name of the field used for filtering.
Definition at line 747 of file voxel_grid.h.
References filter_field_name_.
|
inline |
Get the field filter limits (min/max) set by the user.
The default values are -FLT_MAX, FLT_MAX.
| [out] | limit_min | the minimum allowed field value |
| [out] | limit_max | the maximum allowed field value |
Definition at line 419 of file voxel_grid.h.
|
inline |
Get the field filter limits (min/max) set by the user.
The default values are -FLT_MAX, FLT_MAX.
| [out] | limit_min | the minimum allowed field value |
| [out] | limit_max | the maximum allowed field value |
Definition at line 768 of file voxel_grid.h.
References filter_limit_max_, and filter_limit_min_.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
Definition at line 449 of file voxel_grid.h.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
Definition at line 798 of file voxel_grid.h.
References filter_limit_negative_.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
| [out] | limit_negative | true if data outside the interval [min; max] is to be returned, false otherwise |
Definition at line 440 of file voxel_grid.h.
|
inline |
Get whether the data outside the interval (min/max) is to be returned (true) or inside (false).
| [out] | limit_negative | true if data outside the interval [min; max] is to be returned, false otherwise |
Definition at line 789 of file voxel_grid.h.
References filter_limit_negative_, and getFilterLimitsNegative().
Referenced by getFilterLimitsNegative().
|
inline |
Returns the corresponding (i,j,k) coordinates in the grid of point (x,y,z).
| [in] | x | the X point coordinate to get the (i, j, k) index at |
| [in] | y | the Y point coordinate to get the (i, j, k) index at |
| [in] | z | the Z point coordinate to get the (i, j, k) index at |
Definition at line 363 of file voxel_grid.h.
|
inline |
Returns the corresponding (i,j,k) coordinates in the grid of point (x,y,z).
| [in] | x | the X point coordinate to get the (i, j, k) index at |
| [in] | y | the Y point coordinate to get the (i, j, k) index at |
| [in] | z | the Z point coordinate to get the (i, j, k) index at |
Definition at line 712 of file voxel_grid.h.
References inverse_leaf_size_.
|
inline |
Returns the layout of the leafs for fast access to cells relative to current position.
Definition at line 355 of file voxel_grid.h.
|
inline |
Returns the layout of the leafs for fast access to cells relative to current position.
Definition at line 704 of file voxel_grid.h.
References leaf_layout_.
|
inline |
Get the voxel grid leaf size.
Definition at line 249 of file voxel_grid.h.
|
inline |
|
inline |
Get the minimum coordinates of the bounding box (after filtering is performed).
Definition at line 294 of file voxel_grid.h.
|
inline |
Get the minimum coordinates of the bounding box (after filtering is performed).
Definition at line 621 of file voxel_grid.h.
References max_b_.
|
inline |
Get the minimum coordinates of the bounding box (after filtering is performed).
Definition at line 288 of file voxel_grid.h.
|
inline |
Get the minimum coordinates of the bounding box (after filtering is performed).
Definition at line 615 of file voxel_grid.h.
References min_b_.
|
inline |
Return the minimum number of points required for a voxel to be used.
Definition at line 272 of file voxel_grid.h.
|
inline |
Return the minimum number of points required for a voxel to be used.
Definition at line 599 of file voxel_grid.h.
References min_points_per_voxel_.
|
inline |
Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds).
| [in] | reference_point | the coordinates of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [in] | relative_coordinates | matrix with the columns being the coordinates of the requested cells, relative to the reference point's cell |
Definition at line 331 of file voxel_grid.h.
|
inline |
Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds).
| [in] | x | the X coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [in] | y | the Y coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [in] | z | the Z coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [out] | relative_coordinates | matrix with the columns being the coordinates of the requested cells, relative to the reference point's cell |
Definition at line 661 of file voxel_grid.h.
References divb_mul_, inverse_leaf_size_, leaf_layout_, max_b_, and min_b_.
|
inline |
Returns the indices in the resulting downsampled cloud of the points at the specified grid coordinates, relative to the grid coordinates of the specified point (or -1 if the cell was empty/out of bounds).
| [in] | x | the X coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [in] | y | the Y coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [in] | z | the Z coordinate of the reference point (corresponding cell is allowed to be empty/out of bounds) |
| [out] | relative_coordinates | vector with the elements being the coordinates of the requested cells, relative to the reference point's cell |
Definition at line 690 of file voxel_grid.h.
References divb_mul_, inverse_leaf_size_, leaf_layout_, and min_b_.
|
inline |
Get the number of divisions along all 3 axes (after filtering is performed).
Definition at line 300 of file voxel_grid.h.
|
inline |
Get the number of divisions along all 3 axes (after filtering is performed).
Definition at line 627 of file voxel_grid.h.
References div_b_.
|
inline |
Returns true if leaf layout information will to be saved for later access.
Definition at line 282 of file voxel_grid.h.
|
inline |
Returns true if leaf layout information will to be saved for later access.
Definition at line 609 of file voxel_grid.h.
References save_leaf_layout_.
|
inline |
Set to true if all fields need to be downsampled, or false if just XYZ.
| [in] | downsample | the new value (true/false) |
Definition at line 255 of file voxel_grid.h.
|
inline |
Set to true if all fields need to be downsampled, or false if just XYZ.
| [in] | downsample | the new value (true/false) |
Definition at line 582 of file voxel_grid.h.
References downsample_all_data_.
|
inline |
Provide the name of the field to be used for filtering data.
In conjunction with setFilterLimits, points having values outside this interval will be discarded.
| [in] | field_name | the name of the field that contains values used for filtering |
Definition at line 391 of file voxel_grid.h.
|
inline |
Provide the name of the field to be used for filtering data.
In conjunction with setFilterLimits, points having values outside this interval will be discarded.
| [in] | field_name | the name of the field that contains values used for filtering |
Definition at line 740 of file voxel_grid.h.
References filter_field_name_.
|
inline |
Set the field filter limits.
All points having field values outside this interval will be discarded.
| [in] | limit_min | the minimum allowed field value |
| [in] | limit_max | the maximum allowed field value |
Definition at line 408 of file voxel_grid.h.
|
inline |
Set the field filter limits.
All points having field values outside this interval will be discarded.
| [in] | limit_min | the minimum allowed field value |
| [in] | limit_max | the maximum allowed field value |
Definition at line 757 of file voxel_grid.h.
References filter_limit_max_, and filter_limit_min_.
|
inline |
Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max).
Default: false.
| [in] | limit_negative | return data inside the interval (false) or outside (true) |
Definition at line 430 of file voxel_grid.h.
|
inline |
Set to true if we want to return the data outside the interval specified by setFilterLimits (min, max).
Default: false.
| [in] | limit_negative | return data inside the interval (false) or outside (true) |
Definition at line 779 of file voxel_grid.h.
References filter_limit_negative_.
|
inline |
Set the voxel grid leaf size.
| [in] | leaf_size | the voxel grid leaf size |
Definition at line 221 of file voxel_grid.h.
|
inline |
Set the voxel grid leaf size.
| [in] | leaf_size | the voxel grid leaf size |
Definition at line 548 of file voxel_grid.h.
References inverse_leaf_size_, and leaf_size_.
|
inline |
Set the voxel grid leaf size.
| [in] | lx | the leaf size for X |
| [in] | ly | the leaf size for Y |
| [in] | lz | the leaf size for Z |
Definition at line 237 of file voxel_grid.h.
|
inline |
Set the voxel grid leaf size.
| [in] | lx | the leaf size for X |
| [in] | ly | the leaf size for Y |
| [in] | lz | the leaf size for Z |
Definition at line 564 of file voxel_grid.h.
References inverse_leaf_size_, and leaf_size_.
|
inline |
Set the minimum number of points required for a voxel to be used.
| [in] | min_points_per_voxel | the minimum number of points for required for a voxel to be used |
Definition at line 267 of file voxel_grid.h.
|
inline |
Set the minimum number of points required for a voxel to be used.
| [in] | min_points_per_voxel | the minimum number of points for required for a voxel to be used |
Definition at line 594 of file voxel_grid.h.
References min_points_per_voxel_.
|
inline |
Set to true if leaf layout information needs to be saved for later access.
| [in] | save_leaf_layout | the new value (true/false) |
Definition at line 278 of file voxel_grid.h.
|
inline |
Set to true if leaf layout information needs to be saved for later access.
| [in] | save_leaf_layout | the new value (true/false) |
Definition at line 605 of file voxel_grid.h.
References save_leaf_layout_.
|
protected |
Definition at line 471 of file voxel_grid.h.
|
protected |
Definition at line 826 of file voxel_grid.h.
Referenced by getNrDivisions(), and VoxelGrid().
|
protected |
Definition at line 471 of file voxel_grid.h.
|
protected |
Definition at line 826 of file voxel_grid.h.
Referenced by getCentroidIndex(), getCentroidIndexAt(), getDivisionMultiplier(), getNeighborCentroidIndices(), getNeighborCentroidIndices(), and VoxelGrid().
|
protected |
Set to true if all fields need to be downsampled, or false if just XYZ.
Definition at line 462 of file voxel_grid.h.
|
protected |
Set to true if all fields need to be downsampled, or false if just XYZ.
Definition at line 811 of file voxel_grid.h.
Referenced by getDownsampleAllData(), setDownsampleAllData(), and VoxelGrid().
|
protected |
The desired user filter field name.
Definition at line 474 of file voxel_grid.h.
|
protected |
The desired user filter field name.
Definition at line 829 of file voxel_grid.h.
Referenced by getFilterFieldName(), setFilterFieldName(), and VoxelGrid().
|
protected |
The maximum allowed filter value a point will be considered from.
Definition at line 480 of file voxel_grid.h.
|
protected |
The maximum allowed filter value a point will be considered from.
Definition at line 835 of file voxel_grid.h.
Referenced by getFilterLimits(), setFilterLimits(), and VoxelGrid().
|
protected |
The minimum allowed filter value a point will be considered from.
Definition at line 477 of file voxel_grid.h.
|
protected |
The minimum allowed filter value a point will be considered from.
Definition at line 832 of file voxel_grid.h.
Referenced by getFilterLimits(), setFilterLimits(), and VoxelGrid().
|
protected |
Set to true if we want to return the data outside (filter_limit_min_;filter_limit_max_).
Default: false.
Definition at line 483 of file voxel_grid.h.
|
protected |
Set to true if we want to return the data outside (filter_limit_min_;filter_limit_max_).
Default: false.
Definition at line 838 of file voxel_grid.h.
Referenced by getFilterLimitsNegative(), getFilterLimitsNegative(), setFilterLimitsNegative(), and VoxelGrid().
|
protected |
Internal leaf sizes stored as 1/leaf_size_ for efficiency reasons.
Definition at line 459 of file voxel_grid.h.
|
protected |
Internal leaf sizes stored as 1/leaf_size_ for efficiency reasons.
Definition at line 808 of file voxel_grid.h.
Referenced by getCentroidIndex(), getGridCoordinates(), getNeighborCentroidIndices(), getNeighborCentroidIndices(), setLeafSize(), setLeafSize(), and VoxelGrid().
|
protected |
The leaf layout information for fast access to cells relative to current position.
Definition at line 468 of file voxel_grid.h.
|
protected |
The leaf layout information for fast access to cells relative to current position.
Definition at line 821 of file voxel_grid.h.
Referenced by getCentroidIndex(), getCentroidIndexAt(), getLeafLayout(), getNeighborCentroidIndices(), and getNeighborCentroidIndices().
|
protected |
The size of a leaf.
Definition at line 456 of file voxel_grid.h.
|
protected |
The size of a leaf.
Definition at line 805 of file voxel_grid.h.
Referenced by getLeafSize(), setLeafSize(), setLeafSize(), and VoxelGrid().
|
protected |
Definition at line 471 of file voxel_grid.h.
|
protected |
Definition at line 826 of file voxel_grid.h.
Referenced by getMaxBoxCoordinates(), getNeighborCentroidIndices(), and VoxelGrid().
|
protected |
The minimum and maximum bin coordinates, the number of divisions, and the division multiplier.
Definition at line 471 of file voxel_grid.h.
|
protected |
The minimum and maximum bin coordinates, the number of divisions, and the division multiplier.
Definition at line 826 of file voxel_grid.h.
Referenced by getCentroidIndex(), getCentroidIndexAt(), getMinBoxCoordinates(), getNeighborCentroidIndices(), getNeighborCentroidIndices(), and VoxelGrid().
|
protected |
Minimum number of points per voxel for the centroid to be computed.
Definition at line 486 of file voxel_grid.h.
|
protected |
Minimum number of points per voxel for the centroid to be computed.
Definition at line 841 of file voxel_grid.h.
Referenced by getMinimumPointsNumberPerVoxel(), setMinimumPointsNumberPerVoxel(), and VoxelGrid().
|
protected |
Set to true if leaf layout information needs to be saved in leaf_layout_.
Definition at line 465 of file voxel_grid.h.
|
protected |
Set to true if leaf layout information needs to be saved in leaf_layout.
Definition at line 816 of file voxel_grid.h.
Referenced by getSaveLeafLayout(), setSaveLeafLayout(), and VoxelGrid().