Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef PCL_SAMPLE_CONSENSUS_IMPL_SAC_MODEL_PARALLEL_LINE_H_
00039 #define PCL_SAMPLE_CONSENSUS_IMPL_SAC_MODEL_PARALLEL_LINE_H_
00040
00041 #include <pcl/sample_consensus/sac_model_parallel_line.h>
00042
00044 template <typename PointT> void
00045 pcl::SampleConsensusModelParallelLine<PointT>::selectWithinDistance (
00046 const Eigen::VectorXf &model_coefficients, const double threshold, std::vector<int> &inliers)
00047 {
00048
00049 if (!isModelValid (model_coefficients))
00050 {
00051 inliers.clear ();
00052 return;
00053 }
00054
00055 SampleConsensusModelLine<PointT>::selectWithinDistance (model_coefficients, threshold, inliers);
00056 }
00057
00059 template <typename PointT> int
00060 pcl::SampleConsensusModelParallelLine<PointT>::countWithinDistance (
00061 const Eigen::VectorXf &model_coefficients, const double threshold)
00062 {
00063
00064 if (!isModelValid (model_coefficients))
00065 return (0);
00066
00067 return (SampleConsensusModelLine<PointT>::countWithinDistance (model_coefficients, threshold));
00068 }
00069
00071 template <typename PointT> void
00072 pcl::SampleConsensusModelParallelLine<PointT>::getDistancesToModel (
00073 const Eigen::VectorXf &model_coefficients, std::vector<double> &distances)
00074 {
00075
00076 if (!isModelValid (model_coefficients))
00077 {
00078 distances.clear ();
00079 return;
00080 }
00081
00082 SampleConsensusModelLine<PointT>::getDistancesToModel (model_coefficients, distances);
00083 }
00084
00086 template <typename PointT> bool
00087 pcl::SampleConsensusModelParallelLine<PointT>::isModelValid (const Eigen::VectorXf &model_coefficients)
00088 {
00089
00090 if (model_coefficients.size () != 6)
00091 {
00092 PCL_ERROR ("[pcl::SampleConsensusParallelLine::isModelValid] Invalid number of model coefficients given (%zu)!\n", model_coefficients.size ());
00093 return (false);
00094 }
00095
00096
00097 if (eps_angle_ > 0.0)
00098 {
00099
00100 Eigen::Vector4f line_dir (model_coefficients[3], model_coefficients[4], model_coefficients[5], 0);
00101
00102 Eigen::Vector4f axis (axis_[0], axis_[1], axis_[2], 0);
00103 double angle_diff = fabs (getAngle3D (axis, line_dir));
00104
00105 angle_diff = fabs (angle_diff - (M_PI/2.0));
00106
00107 if (angle_diff > eps_angle_)
00108 return (false);
00109 }
00110
00111 return (true);
00112 }
00113
00114 #define PCL_INSTANTIATE_SampleConsensusModelParallelLine(T) template class PCL_EXPORTS pcl::SampleConsensusModelParallelLine<T>;
00115
00116 #endif // PCL_SAMPLE_CONSENSUS_IMPL_SAC_MODEL_PARALLEL_LINE_H_
00117