Go to the source code of this file.
|
| template<typename Point > |
| void | pcl::projectPoint (const Point &p, const Eigen::Vector4f &model_coefficients, Point &q) |
| | Project a point on a planar model given by a set of normalized coefficients. More...
|
| |
| template<typename Point > |
| double | pcl::pointToPlaneDistanceSigned (const Point &p, double a, double b, double c, double d) |
| | Get the distance from a point to a plane (signed) defined by ax+by+cz+d=0. More...
|
| |
| template<typename Point > |
| double | pcl::pointToPlaneDistanceSigned (const Point &p, const Eigen::Vector4f &plane_coefficients) |
| | Get the distance from a point to a plane (signed) defined by ax+by+cz+d=0. More...
|
| |
| template<typename Point > |
| double | pcl::pointToPlaneDistance (const Point &p, double a, double b, double c, double d) |
| | Get the distance from a point to a plane (unsigned) defined by ax+by+cz+d=0. More...
|
| |
| template<typename Point > |
| double | pcl::pointToPlaneDistance (const Point &p, const Eigen::Vector4f &plane_coefficients) |
| | Get the distance from a point to a plane (unsigned) defined by ax+by+cz+d=0. More...
|
| |