SampleConsensusModelRegistration2D defines a model for Point-To-Point registration outlier rejection using distances between 2D pixels. More...
#include <pcl/sample_consensus/sac_model_registration_2d.h>
Public Member Functions | |
SampleConsensusModelRegistration2D (const PointCloudConstPtr &cloud, bool random=false) | |
Constructor for base SampleConsensusModelRegistration2D. More... |
|
SampleConsensusModelRegistration2D (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
Constructor for base SampleConsensusModelRegistration2D. More... |
|
virtual | ~SampleConsensusModelRegistration2D () |
Empty destructor. More... |
|
void | getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) const |
Compute all distances from the transformed points to their correspondences. More... |
|
void | selectWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold, Indices &inliers) |
Select all the points which respect the given model coefficients as inliers. More... |
|
virtual std::size_t | countWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold) const |
Count all the points which respect the given model coefficients as inliers. More... |
|
void | setProjectionMatrix (const Eigen::Matrix3f &projection_matrix) |
Set the camera projection matrix. More... |
|
Eigen::Matrix3f | getProjectionMatrix () const |
Get the camera projection matrix. More... |
|
Public Member Functions inherited from pcl::SampleConsensusModelRegistration< PointT > | |
SampleConsensusModelRegistration (const PointCloudConstPtr &cloud, bool random=false) | |
Constructor for base SampleConsensusModelRegistration. More... |
|
SampleConsensusModelRegistration (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
Constructor for base SampleConsensusModelRegistration. More... |
|
~SampleConsensusModelRegistration () | |
Empty destructor. More... |
|
void | setInputCloud (const PointCloudConstPtr &cloud) override |
Provide a pointer to the input dataset. More... |
|
void | setInputTarget (const PointCloudConstPtr &target) |
Set the input point cloud target. More... |
|
void | setInputTarget (const PointCloudConstPtr &target, const Indices &indices_tgt) |
Set the input point cloud target. More... |
|
bool | computeModelCoefficients (const Indices &samples, Eigen::VectorXf &model_coefficients) const override |
Compute a 4x4 rigid transformation matrix from the samples given. More... |
|
void | optimizeModelCoefficients (const Indices &inliers, const Eigen::VectorXf &model_coefficients, Eigen::VectorXf &optimized_coefficients) const override |
Recompute the 4x4 transformation using the given inlier set. More... |
|
void | projectPoints (const Indices &, const Eigen::VectorXf &, PointCloud &, bool=true) const override |
Create a new point cloud with inliers projected onto the model. More... |
|
bool | doSamplesVerifyModel (const std::set< index_t > &, const Eigen::VectorXf &, const double) const override |
Verify whether a subset of indices verifies a given set of model coefficients. More... |
|
pcl::SacModel | getModelType () const override |
Return a unique id for this model (SACMODEL_REGISTRATION). More... |
|
Public Member Functions inherited from pcl::SampleConsensusModel< PointT > | |
SampleConsensusModel (const PointCloudConstPtr &cloud, bool random=false) | |
Constructor for base SampleConsensusModel. More... |
|
SampleConsensusModel (const PointCloudConstPtr &cloud, const Indices &indices, bool random=false) | |
Constructor for base SampleConsensusModel. More... |
|
virtual | ~SampleConsensusModel () |
Destructor for base SampleConsensusModel. More... |
|
virtual void | getSamples (int &iterations, Indices &samples) |
Get a set of random data samples and return them as point indices. More... |
|
virtual void | setInputCloud (const PointCloudConstPtr &cloud) |
Provide a pointer to the input dataset. More... |
|
PointCloudConstPtr | getInputCloud () const |
Get a pointer to the input point cloud dataset. More... |
|
void | setIndices (const IndicesPtr &indices) |
Provide a pointer to the vector of indices that represents the input data. More... |
|
void | setIndices (const Indices &indices) |
Provide the vector of indices that represents the input data. More... |
|
IndicesPtr | getIndices () const |
Get a pointer to the vector of indices used. More... |
|
const std::string & | getClassName () const |
Get a string representation of the name of this class. More... |
|
unsigned int | getSampleSize () const |
Return the size of a sample from which the model is computed. More... |
|
unsigned int | getModelSize () const |
Return the number of coefficients in the model. More... |
|
void | setRadiusLimits (const double &min_radius, const double &max_radius) |
Set the minimum and maximum allowable radius limits for the model (applicable to models that estimate a radius) More... |
|
void | getRadiusLimits (double &min_radius, double &max_radius) const |
Get the minimum and maximum allowable radius limits for the model as set by the user. More... |
|
void | setModelConstraints (std::function< bool(const Eigen::VectorXf &)> function) |
This can be used to impose any kind of constraint on the model, e.g. More... |
|
void | setSamplesMaxDist (const double &radius, SearchPtr search) |
Set the maximum distance allowed when drawing random samples. More... |
|
void | getSamplesMaxDist (double &radius) const |
Get maximum distance allowed when drawing random samples. More... |
|
double | computeVariance (const std::vector< double > &error_sqr_dists) const |
Compute the variance of the errors to the model. More... |
|
double | computeVariance () const |
Compute the variance of the errors to the model from the internally estimated vector of distances. More... |
|
Protected Member Functions | |
bool | isSampleGood (const Indices &samples) const |
Check if a sample of indices results in a good sample of points indices. More... |
|
void | computeSampleDistanceThreshold (const PointCloudConstPtr &) |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud. More... |
|
void | computeSampleDistanceThreshold (const PointCloudConstPtr &, const Indices &) |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud. More... |
|
Protected Member Functions inherited from pcl::SampleConsensusModelRegistration< PointT > | |
void | computeSampleDistanceThreshold (const PointCloudConstPtr &cloud) |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud. More... |
|
void | computeSampleDistanceThreshold (const PointCloudConstPtr &cloud, const Indices &indices) |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud. More... |
|
void | estimateRigidTransformationSVD (const pcl::PointCloud< PointT > &cloud_src, const Indices &indices_src, const pcl::PointCloud< PointT > &cloud_tgt, const Indices &indices_tgt, Eigen::VectorXf &transform) const |
Estimate a rigid transformation between a source and a target point cloud using an SVD closed-form solution of absolute orientation using unit quaternions. More... |
|
void | computeOriginalIndexMapping () |
Compute mappings between original indices of the input_/target_ clouds. More... |
|
Protected Member Functions inherited from pcl::SampleConsensusModel< PointT > | |
SampleConsensusModel (bool random=false) | |
Empty constructor for base SampleConsensusModel. More... |
|
void | drawIndexSample (Indices &sample) |
Fills a sample array with random samples from the indices_ vector. More... |
|
void | drawIndexSampleRadius (Indices &sample) |
Fills a sample array with one random sample from the indices_ vector and other random samples that are closer than samples_radius_. More... |
|
virtual bool | isModelValid (const Eigen::VectorXf &model_coefficients) const |
Check whether a model is valid given the user constraints. More... |
|
int | rnd () |
Boost-based random number generator. More... |
|
Additional Inherited Members | |
Protected Attributes inherited from pcl::SampleConsensusModelRegistration< PointT > | |
PointCloudConstPtr | target_ |
A boost shared pointer to the target point cloud data array. More... |
|
IndicesPtr | indices_tgt_ |
A pointer to the vector of target point indices to use. More... |
|
std::map< index_t, index_t > | correspondences_ |
Given the index in the original point cloud, give the matching original index in the target cloud. More... |
|
double | sample_dist_thresh_ |
Internal distance threshold used for the sample selection step. More... |
|
Protected Attributes inherited from pcl::SampleConsensusModel< PointT > | |
std::string | model_name_ |
The model name. More... |
|
PointCloudConstPtr | input_ |
A boost shared pointer to the point cloud data array. More... |
|
IndicesPtr | indices_ |
A pointer to the vector of point indices to use. More... |
|
double | radius_min_ |
The minimum and maximum radius limits for the model. More... |
|
double | radius_max_ |
double | samples_radius_ |
The maximum distance of subsequent samples from the first (radius search) More... |
|
SearchPtr | samples_radius_search_ |
The search object for picking subsequent samples using radius search. More... |
|
Indices | shuffled_indices_ |
Data containing a shuffled version of the indices. More... |
|
boost::mt19937 | rng_alg_ |
Boost-based random number generator algorithm. More... |
|
std::shared_ptr< boost::uniform_int<> > | rng_dist_ |
Boost-based random number generator distribution. More... |
|
std::shared_ptr< boost::variate_generator< boost::mt19937 &, boost::uniform_int<> > > | rng_gen_ |
Boost-based random number generator. More... |
|
std::vector< double > | error_sqr_dists_ |
A vector holding the distances to the computed model. More... |
|
unsigned int | sample_size_ |
The size of a sample from which the model is computed. More... |
|
unsigned int | model_size_ |
The number of coefficients in the model. More... |
|
std::function< bool(const Eigen::VectorXf &)> | custom_model_constraints_ |
A user defined function that takes model coefficients and returns whether the model is acceptable or not. More... |
|
Static Protected Attributes inherited from pcl::SampleConsensusModel< PointT > | |
static const unsigned int | max_sample_checks_ = 1000 |
The maximum number of samples to try until we get a good one. More... |
|
SampleConsensusModelRegistration2D defines a model for Point-To-Point registration outlier rejection using distances between 2D pixels.
Definition at line 52 of file sac_model_registration_2d.h.
using pcl::SampleConsensusModelRegistration2D< PointT >::ConstPtr = shared_ptr<const SampleConsensusModelRegistration2D<PointT> > |
Definition at line 71 of file sac_model_registration_2d.h.
using pcl::SampleConsensusModelRegistration2D< PointT >::PointCloud = typename pcl::SampleConsensusModel<PointT>::PointCloud |
Definition at line 66 of file sac_model_registration_2d.h.
using pcl::SampleConsensusModelRegistration2D< PointT >::PointCloudConstPtr = typename pcl::SampleConsensusModel<PointT>::PointCloudConstPtr |
Definition at line 68 of file sac_model_registration_2d.h.
using pcl::SampleConsensusModelRegistration2D< PointT >::PointCloudPtr = typename pcl::SampleConsensusModel<PointT>::PointCloudPtr |
Definition at line 67 of file sac_model_registration_2d.h.
using pcl::SampleConsensusModelRegistration2D< PointT >::Ptr = shared_ptr<SampleConsensusModelRegistration2D<PointT> > |
Definition at line 70 of file sac_model_registration_2d.h.
| inline |
Constructor for base SampleConsensusModelRegistration2D.
[in] | cloud | the input point cloud dataset |
[in] | random | if true set the random seed to the current time, else set to 12345 (default: false) |
Definition at line 77 of file sac_model_registration_2d.h.
References pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, pcl::SampleConsensusModel< PointT >::sample_size_, and pcl::SampleConsensusModelRegistration< PointT >::setInputCloud().
| inline |
Constructor for base SampleConsensusModelRegistration2D.
[in] | cloud | the input point cloud dataset |
[in] | indices | a vector of point indices to be used from cloud |
[in] | random | if true set the random seed to the current time, else set to 12345 (default: false) |
Definition at line 94 of file sac_model_registration_2d.h.
References pcl::SampleConsensusModelRegistration< PointT >::computeOriginalIndexMapping(), pcl::SampleConsensusModelRegistration2D< PointT >::computeSampleDistanceThreshold(), pcl::SampleConsensusModel< PointT >::model_name_, pcl::SampleConsensusModel< PointT >::model_size_, and pcl::SampleConsensusModel< PointT >::sample_size_.
| inlinevirtual |
Empty destructor.
Definition at line 108 of file sac_model_registration_2d.h.
| inlineprotected |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud.
Definition at line 165 of file sac_model_registration_2d.h.
Referenced by pcl::SampleConsensusModelRegistration2D< PointT >::SampleConsensusModelRegistration2D().
| inlineprotected |
Computes an "optimal" sample distance threshold based on the principal directions of the input cloud.
Definition at line 192 of file sac_model_registration_2d.h.
| virtual |
Count all the points which respect the given model coefficients as inliers.
[in] | model_coefficients | the coefficients of a model that we need to compute distances to |
[in] | threshold | maximum admissible distance threshold for determining the inliers from the outliers |
Reimplemented from pcl::SampleConsensusModelRegistration< PointT >.
Definition at line 181 of file sac_model_registration_2d.hpp.
| virtual |
Compute all distances from the transformed points to their correspondences.
[in] | model_coefficients | the 4x4 transformation matrix |
[out] | distances | the resultant estimated distances |
Reimplemented from pcl::SampleConsensusModelRegistration< PointT >.
Definition at line 67 of file sac_model_registration_2d.hpp.
| inline |
Get the camera projection matrix.
Definition at line 147 of file sac_model_registration_2d.h.
| protectedvirtual |
Check if a sample of indices results in a good sample of points indices.
[in] | samples | the resultant index samples |
Reimplemented from pcl::SampleConsensusModelRegistration< PointT >.
Definition at line 45 of file sac_model_registration_2d.hpp.
| virtual |
Select all the points which respect the given model coefficients as inliers.
[in] | model_coefficients | the 4x4 transformation matrix |
[in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
[out] | inliers | the resultant model inliers |
Reimplemented from pcl::SampleConsensusModelRegistration< PointT >.
Definition at line 121 of file sac_model_registration_2d.hpp.
References pcl::geometry::distance().
| inline |
Set the camera projection matrix.
[in] | projection_matrix | the camera projection matrix |
Definition at line 142 of file sac_model_registration_2d.h.
Referenced by pcl::registration::CorrespondenceRejectorSampleConsensus2D< PointT >::getRemainingCorrespondences().
© 2009–2012, Willow Garage, Inc.
© 2012–, Open Perception, Inc.
Licensed under the BSD License.
https://pointclouds.org/documentation/classpcl_1_1_sample_consensus_model_registration2_d.html