Point Cloud sampling based on the 6D covariances. More...
#include <pcl/filters/covariance_sampling.h>
Public Types | |
using | Ptr = shared_ptr< CovarianceSampling< PointT, PointNT > > |
using | ConstPtr = shared_ptr< const CovarianceSampling< PointT, PointNT > > |
Public Types inherited from pcl::FilterIndices< PointT > | |
using | PointCloud = pcl::PointCloud< PointT > |
using | Ptr = shared_ptr< FilterIndices< PointT > > |
using | ConstPtr = shared_ptr< const FilterIndices< PointT > > |
Public Types inherited from pcl::Filter< 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 |
Public Types inherited from pcl::PCLBase< PointT > | |
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 | |
CovarianceSampling () | |
Empty constructor. More... |
|
void | setNumberOfSamples (unsigned int samples) |
Set number of indices to be sampled. More... |
|
unsigned int | getNumberOfSamples () const |
Get the value of the internal num_samples_ parameter. More... |
|
void | setNormals (const NormalsConstPtr &normals) |
Set the normals computed on the input point cloud. More... |
|
NormalsConstPtr | getNormals () const |
Get the normals computed on the input point cloud. More... |
|
double | computeConditionNumber () |
Compute the condition number of the input point cloud. More... |
|
bool | computeCovarianceMatrix (Eigen::Matrix< double, 6, 6 > &covariance_matrix) |
Computes the covariance matrix of the input cloud. More... |
|
Public Member Functions inherited from pcl::FilterIndices< PointT > | |
FilterIndices (bool extract_removed_indices=false) | |
Constructor. More... |
|
void | filter (Indices &indices) |
Calls the filtering method and returns the filtered point cloud indices. More... |
|
void | setNegative (bool negative) |
Set whether the regular conditions for points filtering should apply, or the inverted conditions. More... |
|
bool | getNegative () const |
Get whether the regular conditions for points filtering should apply, or the inverted conditions. More... |
|
void | setKeepOrganized (bool keep_organized) |
Set whether the filtered points should be kept and set to the value given through setUserFilterValue (default: NaN), or removed from the PointCloud, thus potentially breaking its organized structure. More... |
|
bool | getKeepOrganized () const |
Get whether the filtered points should be kept and set to the value given through setUserFilterValue (default = NaN), or removed from the PointCloud, thus potentially breaking its organized structure. More... |
|
void | setUserFilterValue (float value) |
Provide a value that the filtered points should be set to instead of removing them. More... |
|
Public Member Functions inherited from pcl::Filter< PointT > | |
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... |
|
Public Member Functions inherited from pcl::PCLBase< PointT > | |
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... |
|
Static Public Member Functions | |
static double | computeConditionNumber (const Eigen::Matrix< double, 6, 6 > &covariance_matrix) |
Compute the condition number of the input point cloud. More... |
|
Protected Member Functions | |
bool | initCompute () |
void | applyFilter (Cloud &output) override |
Sample of point indices into a separate PointCloud. More... |
|
void | applyFilter (Indices &indices) override |
Sample of point indices. More... |
|
Protected Member Functions inherited from pcl::FilterIndices< PointT > | |
void | applyFilter (PointCloud &output) override |
Abstract filter method for point cloud. More... |
|
Protected Member Functions inherited from pcl::Filter< PointT > | |
const std::string & | getClassName () const |
Get a string representation of the name of this class. More... |
|
Protected Member Functions inherited from pcl::PCLBase< PointT > | |
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... |
|
Static Protected Member Functions | |
static bool | sort_dot_list_function (std::pair< int, double > a, std::pair< int, double > b) |
Protected Attributes | |
unsigned int | num_samples_ |
Number of indices that will be returned. More... |
|
NormalsConstPtr | input_normals_ |
The normals computed at each point in the input cloud. More... |
|
std::vector< Eigen::Vector3f, Eigen::aligned_allocator< Eigen::Vector3f > > | scaled_points_ |
Protected Attributes inherited from pcl::FilterIndices< PointT > | |
bool | negative_ |
False = normal filter behavior (default), true = inverted behavior. More... |
|
bool | keep_organized_ |
False = remove points (default), true = redefine points, keep structure. More... |
|
float | user_filter_value_ |
The user given value that the filtered point dimensions should be set to (default = NaN). More... |
|
Protected Attributes inherited from pcl::Filter< PointT > | |
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... |
|
Protected Attributes inherited from pcl::PCLBase< PointT > | |
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... |
|
Point Cloud sampling based on the 6D covariances.
It selects the points such that the resulting cloud is as stable as possible for being registered (against a copy of itself) with ICP. The algorithm adds points to the resulting cloud incrementally, while trying to keep all the 6 eigenvalues of the covariance matrix as close to each other as possible. This class also comes with the computeConditionNumber method that returns a number which shows how stable a point cloud will be when used as input for ICP (the closer the value it is to 1.0, the better).
Based on the following publication:
Definition at line 62 of file covariance_sampling.h.
using pcl::CovarianceSampling< PointT, PointNT >::ConstPtr = shared_ptr< const CovarianceSampling<PointT, PointNT> > |
Definition at line 77 of file covariance_sampling.h.
using pcl::CovarianceSampling< PointT, PointNT >::Ptr = shared_ptr< CovarianceSampling<PointT, PointNT> > |
Definition at line 76 of file covariance_sampling.h.
| inline |
Empty constructor.
Definition at line 80 of file covariance_sampling.h.
References pcl::Filter< PointT >::filter_name_.
| overrideprotected |
Sample of point indices into a separate PointCloud.
[out] | output | the resultant point cloud |
Definition at line 212 of file covariance_sampling.hpp.
| overrideprotectedvirtual |
Sample of point indices.
[out] | indices | the resultant point cloud indices |
TODO figure out how to fill the candidate_indices - see subsequent paper paragraphs
Implements pcl::FilterIndices< PointT >.
Definition at line 130 of file covariance_sampling.hpp.
References pcl::computeCovarianceMatrix().
double pcl::CovarianceSampling< PointT, PointNT >::computeConditionNumber |
Compute the condition number of the input point cloud.
The condition number is the ratio between the largest and smallest eigenvalues of the 6x6 covariance matrix of the cloud. The closer this number is to 1.0, the more stable the cloud is for ICP registration.
Definition at line 85 of file covariance_sampling.hpp.
References pcl::computeCovarianceMatrix().
| static |
Compute the condition number of the input point cloud.
The condition number is the ratio between the largest and smallest eigenvalues of the 6x6 covariance matrix of the cloud. The closer this number is to 1.0, the more stable the cloud is for ICP registration.
[in] | covariance_matrix | user given covariance matrix. Assumed to be self adjoint/symmetric. |
Definition at line 97 of file covariance_sampling.hpp.
bool pcl::CovarianceSampling< PointT, PointNT >::computeCovarianceMatrix | ( | Eigen::Matrix< double, 6, 6 > & | covariance_matrix | ) |
Computes the covariance matrix of the input cloud.
[out] | covariance_matrix | the computed covariance matrix. |
Definition at line 108 of file covariance_sampling.hpp.
| inline |
Get the normals computed on the input point cloud.
Definition at line 104 of file covariance_sampling.h.
References pcl::CovarianceSampling< PointT, PointNT >::input_normals_.
| inline |
Get the value of the internal num_samples_ parameter.
Definition at line 92 of file covariance_sampling.h.
References pcl::CovarianceSampling< PointT, PointNT >::num_samples_.
| protected |
Definition at line 50 of file covariance_sampling.hpp.
| inline |
Set the normals computed on the input point cloud.
[in] | normals | the normals computed for the input cloud |
Definition at line 99 of file covariance_sampling.h.
References pcl::CovarianceSampling< PointT, PointNT >::input_normals_.
| inline |
Set number of indices to be sampled.
[in] | samples | the number of sample indices |
Definition at line 87 of file covariance_sampling.h.
References pcl::CovarianceSampling< PointT, PointNT >::num_samples_.
| inlinestaticprotected |
Definition at line 158 of file covariance_sampling.h.
| protected |
The normals computed at each point in the input cloud.
Definition at line 138 of file covariance_sampling.h.
Referenced by pcl::CovarianceSampling< PointT, PointNT >::getNormals(), and pcl::CovarianceSampling< PointT, PointNT >::setNormals().
| protected |
Number of indices that will be returned.
Definition at line 135 of file covariance_sampling.h.
Referenced by pcl::CovarianceSampling< PointT, PointNT >::getNumberOfSamples(), and pcl::CovarianceSampling< PointT, PointNT >::setNumberOfSamples().
| protected |
Definition at line 140 of file covariance_sampling.h.
© 2009–2012, Willow Garage, Inc.
© 2012–, Open Perception, Inc.
Licensed under the BSD License.
https://pointclouds.org/documentation/classpcl_1_1_covariance_sampling.html