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_PERPENDICULAR_PLANE_H_
00039 #define PCL_SAMPLE_CONSENSUS_IMPL_SAC_MODEL_PERPENDICULAR_PLANE_H_
00040
00041 #include "pcl/sample_consensus/sac_model_perpendicular_plane.h"
00042
00044 template <typename PointT> void
00045 pcl::SampleConsensusModelPerpendicularPlane<PointT>::selectWithinDistance (
00046 const Eigen::VectorXf &model_coefficients, double threshold, std::vector<int> &inliers)
00047 {
00048
00049 if (!isModelValid (model_coefficients))
00050 {
00051 inliers.clear ();
00052 return;
00053 }
00054
00055 SampleConsensusModelPlane<PointT>::selectWithinDistance (model_coefficients, threshold, inliers);
00056 }
00057
00059 template <typename PointT> void
00060 pcl::SampleConsensusModelPerpendicularPlane<PointT>::getDistancesToModel (
00061 const Eigen::VectorXf &model_coefficients, std::vector<double> &distances)
00062 {
00063
00064 if (!isModelValid (model_coefficients))
00065 {
00066 distances.clear ();
00067 return;
00068 }
00069
00070 SampleConsensusModelPlane<PointT>::getDistancesToModel (model_coefficients, distances);
00071 }
00072
00074 template <typename PointT> bool
00075 pcl::SampleConsensusModelPerpendicularPlane<PointT>::isModelValid (const Eigen::VectorXf &model_coefficients)
00076 {
00077
00078 if (model_coefficients.size () != 4)
00079 {
00080 ROS_ERROR ("[pcl::SampleConsensusModelPerpendicularPlane::isModelValid] Invalid number of model coefficients given (%zu)!", model_coefficients.size ());
00081 return (false);
00082 }
00083
00084
00085 if (eps_angle_ > 0.0)
00086 {
00087
00088 Eigen::Vector4f coeff = model_coefficients;
00089 coeff[3] = 0;
00090
00091 Eigen::Vector4f axis (axis_[0], axis_[1], axis_[2], 0);
00092 double angle_diff = fabs (getAngle3D (axis, coeff));
00093 angle_diff = (std::min) (angle_diff, M_PI - angle_diff);
00094
00095 if (angle_diff > eps_angle_)
00096 return (false);
00097 }
00098
00099 return (true);
00100 }
00101
00102 #define PCL_INSTANTIATE_SampleConsensusModelPerpendicularPlane(T) template class pcl::SampleConsensusModelPerpendicularPlane<T>;
00103
00104 #endif // PCL_SAMPLE_CONSENSUS_IMPL_SAC_MODEL_PERPENDICULAR_PLANE_H_
00105