pcl::SampleConsensusModelSphere< PointT > Class Template Reference
[Module sample_consensus]

SampleConsensusModelSphere defines a model for 3D sphere segmentation. More...

#include <pcl/sample_consensus/sac_model_sphere.h>

Inheritance diagram for pcl::SampleConsensusModelSphere< PointT >:
Inheritance graph
[legend]
Collaboration diagram for pcl::SampleConsensusModelSphere< PointT >:
Collaboration graph
[legend]

List of all members.

Classes

struct  OptimizationFunctor

Public Types

typedef SampleConsensusModel
< PointT >::PointCloud 
PointCloud
typedef SampleConsensusModel
< PointT >::PointCloudPtr 
PointCloudPtr
typedef SampleConsensusModel
< PointT >::PointCloudConstPtr 
PointCloudConstPtr
typedef boost::shared_ptr
< SampleConsensusModelSphere
Ptr

Public Member Functions

 SampleConsensusModelSphere (const PointCloudConstPtr &cloud, bool random=false)
 Constructor for base SampleConsensusModelSphere.
 SampleConsensusModelSphere (const PointCloudConstPtr &cloud, const std::vector< int > &indices, bool random=false)
 Constructor for base SampleConsensusModelSphere.
virtual ~SampleConsensusModelSphere ()
 Empty destructor.
 SampleConsensusModelSphere (const SampleConsensusModelSphere &source)
 Copy constructor.
SampleConsensusModelSphereoperator= (const SampleConsensusModelSphere &source)
 Copy constructor.
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.
void getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances)
 Compute all distances from the cloud data to a given sphere model.
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.
virtual int countWithinDistance (const Eigen::VectorXf &model_coefficients, const double threshold)
 Count all the points which respect the given model coefficients as inliers.
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.
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.
pcl::SacModel getModelType () const
 Return an unique id for this model (SACMODEL_SPHERE).

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.

Detailed Description

template<typename PointT>
class pcl::SampleConsensusModelSphere< PointT >

SampleConsensusModelSphere defines a model for 3D sphere segmentation.

The model coefficients are defined as:

Author:
Radu B. Rusu

Definition at line 60 of file sac_model_sphere.h.


Member Typedef Documentation

template<typename PointT>
typedef boost::shared_ptr<SampleConsensusModelSphere> pcl::SampleConsensusModelSphere< PointT >::Ptr

Constructor & Destructor Documentation

template<typename PointT>
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere ( const PointCloudConstPtr cloud,
bool  random = false 
) [inline]

Constructor for base SampleConsensusModelSphere.

Parameters:
[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 79 of file sac_model_sphere.h.

template<typename PointT>
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere ( const PointCloudConstPtr cloud,
const std::vector< int > &  indices,
bool  random = false 
) [inline]

Constructor for base SampleConsensusModelSphere.

Parameters:
[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 89 of file sac_model_sphere.h.

template<typename PointT>
virtual pcl::SampleConsensusModelSphere< PointT >::~SampleConsensusModelSphere (  )  [inline, virtual]

Empty destructor.

Definition at line 96 of file sac_model_sphere.h.

template<typename PointT>
pcl::SampleConsensusModelSphere< PointT >::SampleConsensusModelSphere ( const SampleConsensusModelSphere< PointT > &  source  )  [inline]

Copy constructor.

Parameters:
[in] source the model to copy into this

Definition at line 101 of file sac_model_sphere.h.


Member Function Documentation

template<typename PointT >
bool pcl::SampleConsensusModelSphere< PointT >::computeModelCoefficients ( const std::vector< int > &  samples,
Eigen::VectorXf &  model_coefficients 
) [inline, 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.

Parameters:
[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 56 of file sac_model_sphere.hpp.

References pcl::SampleConsensusModel< PointT >::input_.

template<typename PointT >
int pcl::SampleConsensusModelSphere< PointT >::countWithinDistance ( const Eigen::VectorXf &  model_coefficients,
const double  threshold 
) [inline, virtual]

Count all the points which respect the given model coefficients as inliers.

Parameters:
[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
Returns:
the resultant number of inliers

Implements pcl::SampleConsensusModel< PointT >.

Reimplemented in pcl::SampleConsensusModelNormalSphere< PointT, PointNT >.

Definition at line 195 of file sac_model_sphere.hpp.

References pcl::SampleConsensusModel< PointT >::indices_, pcl::SampleConsensusModel< PointT >::input_, and pcl::SampleConsensusModelSphere< PointT >::isModelValid().

template<typename PointT >
bool pcl::SampleConsensusModelSphere< PointT >::doSamplesVerifyModel ( const std::set< int > &  indices,
const Eigen::VectorXf &  model_coefficients,
const double  threshold 
) [inline, virtual]

Verify whether a subset of indices verifies the given sphere model coefficients.

Parameters:
[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 282 of file sac_model_sphere.hpp.

References pcl::SampleConsensusModel< PointT >::input_.

template<typename PointT >
void pcl::SampleConsensusModelSphere< PointT >::getDistancesToModel ( const Eigen::VectorXf &  model_coefficients,
std::vector< double > &  distances 
) [inline, virtual]

Compute all distances from the cloud data to a given sphere model.

Parameters:
[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 123 of file sac_model_sphere.hpp.

References pcl::SampleConsensusModel< PointT >::indices_, pcl::SampleConsensusModel< PointT >::input_, and pcl::SampleConsensusModelSphere< PointT >::isModelValid().

template<typename PointT>
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 191 of file sac_model_sphere.h.

References pcl::SACMODEL_SPHERE.

template<typename PointT>
bool pcl::SampleConsensusModelSphere< PointT >::isModelValid ( const Eigen::VectorXf &  model_coefficients  )  [inline, protected, virtual]
template<typename PointT >
bool pcl::SampleConsensusModelSphere< PointT >::isSampleGood ( const std::vector< int > &  samples  )  const [inline, protected, virtual]

Check if a sample of indices results in a good sample of points indices.

Parameters:
[in] samples the resultant index samples

Implements pcl::SampleConsensusModel< PointT >.

Definition at line 49 of file sac_model_sphere.hpp.

template<typename PointT>
SampleConsensusModelSphere& pcl::SampleConsensusModelSphere< PointT >::operator= ( const SampleConsensusModelSphere< PointT > &  source  )  [inline]

Copy constructor.

Parameters:
[in] source the model to copy into this

Definition at line 111 of file sac_model_sphere.h.

template<typename PointT >
void pcl::SampleConsensusModelSphere< PointT >::optimizeModelCoefficients ( const std::vector< int > &  inliers,
const Eigen::VectorXf &  model_coefficients,
Eigen::VectorXf &  optimized_coefficients 
) [inline, virtual]

Recompute the sphere coefficients using the given inlier set and return them to the user.

Note:
: these are the coefficients of the sphere model after refinement (eg. after SVD)
Parameters:
[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 226 of file sac_model_sphere.hpp.

template<typename PointT >
void pcl::SampleConsensusModelSphere< PointT >::projectPoints ( const std::vector< int > &  inliers,
const Eigen::VectorXf &  model_coefficients,
PointCloud projected_points,
bool  copy_data_fields = true 
) [inline, virtual]

Create a new point cloud with inliers projected onto the sphere model.

Parameters:
[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 259 of file sac_model_sphere.hpp.

References pcl::PointCloud< PointT >::header, pcl::PointCloud< PointT >::height, pcl::SampleConsensusModel< PointT >::input_, pcl::PointCloud< PointT >::is_dense, pcl::PointCloud< PointT >::points, and pcl::PointCloud< PointT >::width.

template<typename PointT >
void pcl::SampleConsensusModelSphere< PointT >::selectWithinDistance ( const Eigen::VectorXf &  model_coefficients,
const double  threshold,
std::vector< int > &  inliers 
) [inline, virtual]

Select all the points which respect the given model coefficients as inliers.

Parameters:
[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 152 of file sac_model_sphere.hpp.

References pcl::SampleConsensusModel< PointT >::error_sqr_dists_, pcl::SampleConsensusModel< PointT >::indices_, pcl::SampleConsensusModel< PointT >::input_, and pcl::SampleConsensusModelSphere< PointT >::isModelValid().


The documentation for this class was generated from the following files:
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends