ApproximateVoxelGrid assembles a local 3D grid over a given PointCloud, and downsamples + filters the data. More...
#include <pcl/filters/approximate_voxel_grid.h>
Public Types | |
| using | Ptr = shared_ptr< ApproximateVoxelGrid< PointT > > |
| using | ConstPtr = shared_ptr< const ApproximateVoxelGrid< PointT > > |
|
| |
| using | Ptr = shared_ptr< Filter< PointT > > |
| using | ConstPtr = shared_ptr< const Filter< PointT > > |
| using | PointCloud = pcl::PointCloud< PointT > |
| using | PointCloudPtr = typename PointCloud::Ptr |
| using | PointCloudConstPtr = typename PointCloud::ConstPtr |
|
| |
| using | PointCloud = pcl::PointCloud< PointT > |
| using | PointCloudPtr = typename PointCloud::Ptr |
| using | PointCloudConstPtr = typename PointCloud::ConstPtr |
| using | PointIndicesPtr = PointIndices::Ptr |
| using | PointIndicesConstPtr = PointIndices::ConstPtr |
Public Member Functions | |
| ApproximateVoxelGrid () | |
| Empty constructor. More... |
|
| ApproximateVoxelGrid (const ApproximateVoxelGrid &src) | |
| Copy constructor. More... |
|
| ~ApproximateVoxelGrid () | |
| Destructor. More... |
|
| ApproximateVoxelGrid & | operator= (const ApproximateVoxelGrid &src) |
| Copy operator. More... |
|
| void | setLeafSize (const Eigen::Vector3f &leaf_size) |
| Set the voxel grid leaf size. More... |
|
| void | setLeafSize (float lx, float ly, float lz) |
| Set the voxel grid leaf size. More... |
|
| Eigen::Vector3f | getLeafSize () const |
| Get the voxel grid leaf size. More... |
|
| void | setDownsampleAllData (bool downsample) |
| Set to true if all fields need to be downsampled, or false if just XYZ. More... |
|
| bool | getDownsampleAllData () const |
| Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ). More... |
|
|
| |
| Filter (bool extract_removed_indices=false) | |
| Empty constructor. More... |
|
| const IndicesConstPtr | getRemovedIndices () const |
| Get the point indices being removed. More... |
|
| void | getRemovedIndices (PointIndices &pi) |
| Get the point indices being removed. More... |
|
| void | filter (PointCloud &output) |
| Calls the filtering method and returns the filtered dataset in output. More... |
|
|
| |
| PCLBase () | |
| Empty constructor. More... |
|
| PCLBase (const PCLBase &base) | |
| Copy constructor. More... |
|
| virtual | ~PCLBase ()=default |
| Destructor. More... |
|
| virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
| Provide a pointer to the input dataset. More... |
|
| const PointCloudConstPtr | getInputCloud () const |
| Get a pointer to the input point cloud dataset. More... |
|
| virtual void | setIndices (const IndicesPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... |
|
| virtual void | setIndices (const IndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... |
|
| virtual void | setIndices (const PointIndicesConstPtr &indices) |
| Provide a pointer to the vector of indices that represents the input data. More... |
|
| 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. More... |
|
| IndicesPtr | getIndices () |
| Get a pointer to the vector of indices used. More... |
|
| const IndicesConstPtr | getIndices () const |
| Get a pointer to the vector of indices used. More... |
|
| const PointT & | operator[] (std::size_t pos) const |
| Override PointCloud operator[] to shorten code. More... |
|
Protected Types | |
| using | FieldList = typename pcl::traits::fieldList< PointT >::type |
Protected Member Functions | |
| void | applyFilter (PointCloud &output) override |
| Downsample a Point Cloud using a voxelized grid approach. More... |
|
| void | flush (PointCloud &output, std::size_t op, he *hhe, int rgba_index, int centroid_size) |
| Write a single point from the hash to the output cloud. More... |
|
|
| |
| const std::string & | getClassName () const |
| Get a string representation of the name of this class. More... |
|
|
| |
| bool | initCompute () |
| This method should get called before starting the actual computation. More... |
|
| bool | deinitCompute () |
| This method should get called after finishing the actual computation. More... |
|
Protected Attributes | |
| Eigen::Vector3f | leaf_size_ |
| The size of a leaf. More... |
|
| Eigen::Array3f | inverse_leaf_size_ |
| Compute 1/leaf_size_ to avoid division later. More... |
|
| bool | downsample_all_data_ |
| Set to true if all fields need to be downsampled, or false if just XYZ. More... |
|
| std::size_t | histsize_ |
| history buffer size, power of 2 More... |
|
| struct he * | history_ |
| history buffer More... |
|
|
| |
| IndicesPtr | removed_indices_ |
| Indices of the points that are removed. More... |
|
| std::string | filter_name_ |
| The filter name. More... |
|
| bool | extract_removed_indices_ |
| Set to true if we want to return the indices of the removed points. More... |
|
|
| |
| PointCloudConstPtr | input_ |
| The input point cloud dataset. More... |
|
| IndicesPtr | indices_ |
| A pointer to the vector of point indices to use. More... |
|
| bool | use_indices_ |
| Set to true if point indices are used. More... |
|
| bool | fake_indices_ |
| If no set of indices are given, we construct a set of fake indices that mimic the input PointCloud. More... |
|
ApproximateVoxelGrid assembles a local 3D grid over a given PointCloud, and downsamples + filters the data.
Definition at line 98 of file approximate_voxel_grid.h.
| using pcl::ApproximateVoxelGrid< PointT >::ConstPtr = shared_ptr<const ApproximateVoxelGrid<PointT> > |
Definition at line 121 of file approximate_voxel_grid.h.
| protected |
Definition at line 229 of file approximate_voxel_grid.h.
| using pcl::ApproximateVoxelGrid< PointT >::Ptr = shared_ptr<ApproximateVoxelGrid<PointT> > |
Definition at line 120 of file approximate_voxel_grid.h.
| inline |
Empty constructor.
Definition at line 125 of file approximate_voxel_grid.h.
References pcl::Filter< PointT >::filter_name_.
| inline |
Copy constructor.
| [in] | src | the approximate voxel grid to copy into this. |
Definition at line 138 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::history_, and pcl::ApproximateVoxelGrid< PointT >::histsize_.
| inline |
Destructor.
Definition at line 154 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::history_.
| overrideprotectedvirtual |
Downsample a Point Cloud using a voxelized grid approach.
| output | the resultant point cloud message |
Implements pcl::Filter< PointT >.
Definition at line 65 of file approximate_voxel_grid.hpp.
References pcl::PointCloud< PointT >::height, pcl::PointCloud< PointT >::is_dense, pcl::PointCloud< PointT >::resize(), pcl::PointCloud< PointT >::size(), and pcl::PointCloud< PointT >::width.
| protected |
Write a single point from the hash to the output cloud.
Definition at line 47 of file approximate_voxel_grid.hpp.
| inline |
Get the state of the internal downsampling parameter (true if all fields need to be downsampled, false if just XYZ).
Definition at line 211 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::downsample_all_data_.
| inline |
Get the voxel grid leaf size.
Definition at line 199 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::leaf_size_.
| inline |
Copy operator.
| [in] | src | the approximate voxel grid to copy into this. |
Definition at line 164 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::downsample_all_data_, pcl::ApproximateVoxelGrid< PointT >::history_, pcl::ApproximateVoxelGrid< PointT >::histsize_, pcl::ApproximateVoxelGrid< PointT >::inverse_leaf_size_, and pcl::ApproximateVoxelGrid< PointT >::leaf_size_.
| inline |
Set to true if all fields need to be downsampled, or false if just XYZ.
| downsample | the new value (true/false) |
Definition at line 205 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::downsample_all_data_.
| inline |
Set the voxel grid leaf size.
| [in] | leaf_size | the voxel grid leaf size |
Definition at line 180 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::inverse_leaf_size_, and pcl::ApproximateVoxelGrid< PointT >::leaf_size_.
Referenced by pcl::ApproximateVoxelGrid< PointT >::setLeafSize().
| 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 192 of file approximate_voxel_grid.h.
References pcl::ApproximateVoxelGrid< PointT >::setLeafSize().
| protected |
Set to true if all fields need to be downsampled, or false if just XYZ.
Definition at line 221 of file approximate_voxel_grid.h.
Referenced by pcl::ApproximateVoxelGrid< PointT >::getDownsampleAllData(), pcl::ApproximateVoxelGrid< PointT >::operator=(), and pcl::ApproximateVoxelGrid< PointT >::setDownsampleAllData().
| protected |
history buffer
Definition at line 227 of file approximate_voxel_grid.h.
Referenced by pcl::ApproximateVoxelGrid< PointT >::ApproximateVoxelGrid(), pcl::ApproximateVoxelGrid< PointT >::operator=(), and pcl::ApproximateVoxelGrid< PointT >::~ApproximateVoxelGrid().
| protected |
history buffer size, power of 2
Definition at line 224 of file approximate_voxel_grid.h.
Referenced by pcl::ApproximateVoxelGrid< PointT >::ApproximateVoxelGrid(), and pcl::ApproximateVoxelGrid< PointT >::operator=().
| protected |
Compute 1/leaf_size_ to avoid division later.
Definition at line 218 of file approximate_voxel_grid.h.
Referenced by pcl::ApproximateVoxelGrid< PointT >::operator=(), and pcl::ApproximateVoxelGrid< PointT >::setLeafSize().
| protected |
The size of a leaf.
Definition at line 215 of file approximate_voxel_grid.h.
Referenced by pcl::ApproximateVoxelGrid< PointT >::getLeafSize(), pcl::ApproximateVoxelGrid< PointT >::operator=(), and pcl::ApproximateVoxelGrid< PointT >::setLeafSize().
© 2009–2012, Willow Garage, Inc.
© 2012–, Open Perception, Inc.
Licensed under the BSD License.
https://pointclouds.org/documentation/classpcl_1_1_approximate_voxel_grid.html