SampleConsensusModelSphere defines a model for 3D sphere segmentation. The model coefficients are defined as: More...
#include <sac_model_sphere.h>
Classes | |
struct | OptimizationFunctor |
Public Types | |
typedef SampleConsensusModel < PointT >::PointCloud | PointCloud |
typedef SampleConsensusModel < PointT >::PointCloudConstPtr | PointCloudConstPtr |
typedef SampleConsensusModel < PointT >::PointCloudPtr | PointCloudPtr |
typedef boost::shared_ptr < SampleConsensusModelSphere > | Ptr |
Public Member Functions | |
bool | computeModelCoefficients (const std::vector< int > &samples, Eigen::VectorXf &model_coefficients) |
Check whether the given index samples can form a valid sphere model, compute the model coefficients from these samples and store them internally in model_coefficients. The sphere coefficients are: x, y, z, R. | |
virtual int | countWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold) |
Count all the points which respect the given model coefficients as inliers. | |
bool | doSamplesVerifyModel (const std::set< int > &indices, const Eigen::VectorXf &model_coefficients, const double threshold) |
Verify whether a subset of indices verifies the given sphere model coefficients. | |
void | getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) |
Compute all distances from the cloud data to a given sphere model. | |
pcl::SacModel | getModelType () const |
Return an unique id for this model (SACMODEL_SPHERE). | |
SampleConsensusModelSphere & | operator= (const SampleConsensusModelSphere &source) |
Copy constructor. | |
void | optimizeModelCoefficients (const std::vector< int > &inliers, const Eigen::VectorXf &model_coefficients, Eigen::VectorXf &optimized_coefficients) |
Recompute the sphere coefficients using the given inlier set and return them to the user. | |
void | projectPoints (const std::vector< int > &inliers, const Eigen::VectorXf &model_coefficients, PointCloud &projected_points, bool copy_data_fields=true) |
Create a new point cloud with inliers projected onto the sphere model. | |
SampleConsensusModelSphere (const PointCloudConstPtr &cloud) | |
Constructor for base SampleConsensusModelSphere. | |
SampleConsensusModelSphere (const PointCloudConstPtr &cloud, const std::vector< int > &indices) | |
Constructor for base SampleConsensusModelSphere. | |
SampleConsensusModelSphere (const SampleConsensusModelSphere &source) | |
Copy constructor. | |
void | selectWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold, std::vector< int > &inliers) |
Select all the points which respect the given model coefficients as inliers. | |
Protected Member Functions | |
bool | isModelValid (const Eigen::VectorXf &model_coefficients) |
Check whether a model is valid given the user constraints. | |
bool | isSampleGood (const std::vector< int > &samples) const |
Check if a sample of indices results in a good sample of points indices. | |
Private Attributes | |
const std::vector< int > * | tmp_inliers_ |
Temporary pointer to a list of given indices for optimizeModelCoefficients () |
SampleConsensusModelSphere defines a model for 3D sphere segmentation. The model coefficients are defined as:
Definition at line 59 of file sac_model_sphere.h.
typedef SampleConsensusModel<PointT>::PointCloud pcl::SampleConsensusModelSphere< PointT >::PointCloud |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 68 of file sac_model_sphere.h.
typedef SampleConsensusModel<PointT>::PointCloudConstPtr pcl::SampleConsensusModelSphere< PointT >::PointCloudConstPtr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 70 of file sac_model_sphere.h.
typedef SampleConsensusModel<PointT>::PointCloudPtr pcl::SampleConsensusModelSphere< PointT >::PointCloudPtr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 69 of file sac_model_sphere.h.
typedef boost::shared_ptr<SampleConsensusModelSphere> pcl::SampleConsensusModelSphere< PointT >::Ptr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 72 of file sac_model_sphere.h.
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere | ( | const PointCloudConstPtr & | cloud | ) | [inline] |
Constructor for base SampleConsensusModelSphere.
[in] | cloud | the input point cloud dataset |
Definition at line 77 of file sac_model_sphere.h.
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere | ( | const PointCloudConstPtr & | cloud, |
const std::vector< int > & | indices | ||
) | [inline] |
Constructor for base SampleConsensusModelSphere.
[in] | cloud | the input point cloud dataset |
[in] | indices | a vector of point indices to be used from cloud |
Definition at line 85 of file sac_model_sphere.h.
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere | ( | const SampleConsensusModelSphere< PointT > & | source | ) | [inline] |
Copy constructor.
[in] | source | the model to copy into this |
Definition at line 92 of file sac_model_sphere.h.
bool pcl::SampleConsensusModelSphere< PointT >::computeModelCoefficients | ( | const std::vector< int > & | samples, |
Eigen::VectorXf & | model_coefficients | ||
) | [virtual] |
Check whether the given index samples can form a valid sphere model, compute the model coefficients from these samples and store them internally in model_coefficients. The sphere coefficients are: x, y, z, R.
[in] | samples | the point indices found as possible good candidates for creating a valid model |
[out] | model_coefficients | the resultant model coefficients |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 53 of file sac_model_sphere.hpp.
int pcl::SampleConsensusModelSphere< PointT >::countWithinDistance | ( | const Eigen::VectorXf & | model_coefficients, |
const double | threshold | ||
) | [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 |
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 188 of file sac_model_sphere.hpp.
bool pcl::SampleConsensusModelSphere< PointT >::doSamplesVerifyModel | ( | const std::set< int > & | indices, |
const Eigen::VectorXf & | model_coefficients, | ||
const double | threshold | ||
) | [virtual] |
Verify whether a subset of indices verifies the given sphere model coefficients.
[in] | indices | the data indices that need to be tested against the sphere model |
[in] | model_coefficients | the sphere model coefficients |
[in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 275 of file sac_model_sphere.hpp.
void pcl::SampleConsensusModelSphere< PointT >::getDistancesToModel | ( | const Eigen::VectorXf & | model_coefficients, |
std::vector< double > & | distances | ||
) | [virtual] |
Compute all distances from the cloud data to a given sphere model.
[in] | model_coefficients | the coefficients of a sphere model that we need to compute distances to |
[out] | distances | the resultant estimated distances |
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 120 of file sac_model_sphere.hpp.
pcl::SacModel pcl::SampleConsensusModelSphere< PointT >::getModelType | ( | ) | const [inline, virtual] |
Return an unique id for this model (SACMODEL_SPHERE).
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 182 of file sac_model_sphere.h.
bool pcl::SampleConsensusModelSphere< PointT >::isModelValid | ( | const Eigen::VectorXf & | model_coefficients | ) | [inline, protected, virtual] |
Check whether a model is valid given the user constraints.
[in] | model_coefficients | the set of model coefficients |
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 189 of file sac_model_sphere.h.
bool pcl::SampleConsensusModelSphere< PointT >::isSampleGood | ( | const std::vector< int > & | samples | ) | const [protected, virtual] |
Check if a sample of indices results in a good sample of points indices.
[in] | samples | the resultant index samples |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 46 of file sac_model_sphere.hpp.
SampleConsensusModelSphere& pcl::SampleConsensusModelSphere< PointT >::operator= | ( | const SampleConsensusModelSphere< PointT > & | source | ) | [inline] |
Copy constructor.
[in] | source | the model to copy into this |
Definition at line 102 of file sac_model_sphere.h.
void pcl::SampleConsensusModelSphere< PointT >::optimizeModelCoefficients | ( | const std::vector< int > & | inliers, |
const Eigen::VectorXf & | model_coefficients, | ||
Eigen::VectorXf & | optimized_coefficients | ||
) | [virtual] |
Recompute the sphere coefficients using the given inlier set and return them to the user.
[in] | inliers | the data inliers found as supporting the model |
[in] | model_coefficients | the initial guess for the optimization |
[out] | optimized_coefficients | the resultant recomputed coefficients after non-linear optimization |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 219 of file sac_model_sphere.hpp.
void pcl::SampleConsensusModelSphere< PointT >::projectPoints | ( | const std::vector< int > & | inliers, |
const Eigen::VectorXf & | model_coefficients, | ||
PointCloud & | projected_points, | ||
bool | copy_data_fields = true |
||
) | [virtual] |
Create a new point cloud with inliers projected onto the sphere model.
[in] | inliers | the data inliers that we want to project on the sphere model |
[in] | model_coefficients | the coefficients of a sphere model |
[out] | projected_points | the resultant projected points |
[in] | copy_data_fields | set to true if we need to copy the other data fields |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 252 of file sac_model_sphere.hpp.
void pcl::SampleConsensusModelSphere< PointT >::selectWithinDistance | ( | const Eigen::VectorXf & | model_coefficients, |
const double | threshold, | ||
std::vector< int > & | inliers | ||
) | [virtual] |
Select all the points which respect the given model coefficients as inliers.
[in] | model_coefficients | the coefficients of a sphere model that we need to compute distances to |
[in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
[out] | inliers | the resultant model inliers |
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.
Definition at line 149 of file sac_model_sphere.hpp.
const std::vector<int>* pcl::SampleConsensusModelSphere< PointT >::tmp_inliers_ [private] |
Temporary pointer to a list of given indices for optimizeModelCoefficients ()
Definition at line 215 of file sac_model_sphere.h.