SampleConsensusModelLine defines a model for 3D line segmentation. The model coefficients are defined as: More...
#include <sac_model_line.h>

Public Types | |
| typedef SampleConsensusModel < PointT >::PointCloud | PointCloud |
| typedef SampleConsensusModel < PointT >::PointCloudConstPtr | PointCloudConstPtr |
| typedef SampleConsensusModel < PointT >::PointCloudPtr | PointCloudPtr |
| typedef boost::shared_ptr < SampleConsensusModelLine > | 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 line model, compute the model coefficients from these samples and store them internally in model_coefficients_. The line coefficients are represented by a point and a line direction. | |
| 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 line model coefficients. | |
| void | getDistancesToModel (const Eigen::VectorXf &model_coefficients, std::vector< double > &distances) |
| Compute all squared distances from the cloud data to a given line model. | |
| pcl::SacModel | getModelType () const |
| Return an unique id for this model (SACMODEL_LINE). | |
| void | optimizeModelCoefficients (const std::vector< int > &inliers, const Eigen::VectorXf &model_coefficients, Eigen::VectorXf &optimized_coefficients) |
| Recompute the line 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 line model. | |
| SampleConsensusModelLine (const PointCloudConstPtr &cloud) | |
| Constructor for base SampleConsensusModelLine. | |
| SampleConsensusModelLine (const PointCloudConstPtr &cloud, const std::vector< int > &indices) | |
| Constructor for base SampleConsensusModelLine. | |
| 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. | |
SampleConsensusModelLine defines a model for 3D line segmentation. The model coefficients are defined as:
Definition at line 62 of file sac_model_line.h.
| typedef SampleConsensusModel<PointT>::PointCloud pcl::SampleConsensusModelLine< PointT >::PointCloud |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 68 of file sac_model_line.h.
| typedef SampleConsensusModel<PointT>::PointCloudConstPtr pcl::SampleConsensusModelLine< PointT >::PointCloudConstPtr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 70 of file sac_model_line.h.
| typedef SampleConsensusModel<PointT>::PointCloudPtr pcl::SampleConsensusModelLine< PointT >::PointCloudPtr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 69 of file sac_model_line.h.
| typedef boost::shared_ptr<SampleConsensusModelLine> pcl::SampleConsensusModelLine< PointT >::Ptr |
Reimplemented from pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 72 of file sac_model_line.h.
| pcl::SampleConsensusModelLine< PointT >::SampleConsensusModelLine | ( | const PointCloudConstPtr & | cloud | ) | [inline] |
Constructor for base SampleConsensusModelLine.
| [in] | cloud | the input point cloud dataset |
Definition at line 77 of file sac_model_line.h.
| pcl::SampleConsensusModelLine< PointT >::SampleConsensusModelLine | ( | const PointCloudConstPtr & | cloud, |
| const std::vector< int > & | indices | ||
| ) | [inline] |
Constructor for base SampleConsensusModelLine.
| [in] | cloud | the input point cloud dataset |
| [in] | indices | a vector of point indices to be used from cloud |
Definition at line 83 of file sac_model_line.h.
| bool pcl::SampleConsensusModelLine< PointT >::computeModelCoefficients | ( | const std::vector< int > & | samples, |
| Eigen::VectorXf & | model_coefficients | ||
| ) | [virtual] |
Check whether the given index samples can form a valid line model, compute the model coefficients from these samples and store them internally in model_coefficients_. The line coefficients are represented by a point and a line direction.
| [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 62 of file sac_model_line.hpp.
| int pcl::SampleConsensusModelLine< 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::SampleConsensusModelParallelLine< PointT >.
Definition at line 149 of file sac_model_line.hpp.
| bool pcl::SampleConsensusModelLine< 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 line model coefficients.
| [in] | indices | the data indices that need to be tested against the line model |
| [in] | model_coefficients | the line model coefficients |
| [in] | threshold | a maximum admissible distance threshold for determining the inliers from the outliers |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 294 of file sac_model_line.hpp.
| void pcl::SampleConsensusModelLine< PointT >::getDistancesToModel | ( | const Eigen::VectorXf & | model_coefficients, |
| std::vector< double > & | distances | ||
| ) | [virtual] |
Compute all squared distances from the cloud data to a given line model.
| [in] | model_coefficients | the coefficients of a line model that we need to compute distances to |
| [out] | distances | the resultant estimated squared distances |
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 87 of file sac_model_line.hpp.
| pcl::SacModel pcl::SampleConsensusModelLine< PointT >::getModelType | ( | ) | const [inline, virtual] |
Return an unique id for this model (SACMODEL_LINE).
Implements pcl::SampleConsensusModel< PointT >.
Reimplemented in pcl::SampleConsensusModelParallelLine< PointT >.
Definition at line 158 of file sac_model_line.h.
| bool pcl::SampleConsensusModelLine< 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::SampleConsensusModelParallelLine< PointT >.
Definition at line 165 of file sac_model_line.h.
| bool pcl::SampleConsensusModelLine< 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 47 of file sac_model_line.hpp.
| void pcl::SampleConsensusModelLine< PointT >::optimizeModelCoefficients | ( | const std::vector< int > & | inliers, |
| const Eigen::VectorXf & | model_coefficients, | ||
| Eigen::VectorXf & | optimized_coefficients | ||
| ) | [virtual] |
Recompute the line 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 model coefficients |
| [out] | optimized_coefficients | the resultant recomputed coefficients after optimization |
Implements pcl::SampleConsensusModel< PointT >.
Definition at line 180 of file sac_model_line.hpp.
| void pcl::SampleConsensusModelLine< 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 line model.
| [in] | inliers | the data inliers that we want to project on the line model |
| [in] | model_coefficients | the *normalized* coefficients of a line 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 221 of file sac_model_line.hpp.
| void pcl::SampleConsensusModelLine< 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 line 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::SampleConsensusModelParallelLine< PointT >.
Definition at line 113 of file sac_model_line.hpp.