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 #ifndef JSK_RECOGNITION_UTILS_GEO_PLANE_H_
00037 #define JSK_RECOGNITION_UTILS_GEO_PLANE_H_
00038
00039 #include <Eigen/Geometry>
00040 #include <boost/shared_ptr.hpp>
00041 #include <boost/array.hpp>
00042 #include <vector>
00043 #include "jsk_recognition_utils/types.h"
00044
00045 namespace jsk_recognition_utils
00046 {
00047 class Plane
00048 {
00049 public:
00050 typedef boost::shared_ptr<Plane> Ptr;
00051 Plane(const std::vector<float>& coefficients);
00052 Plane(const boost::array<float, 4>& coefficients);
00053 Plane(Eigen::Vector3f normal, double d);
00054 Plane(Eigen::Vector3f normal, Eigen::Vector3f p);
00055 virtual ~Plane();
00056 virtual Plane flip();
00057 virtual Plane::Ptr faceToOrigin();
00058 virtual bool isSameDirection(const Plane& another);
00059 virtual bool isSameDirection(const Eigen::Vector3f& another_normal);
00060 virtual double signedDistanceToPoint(const Eigen::Vector4f p);
00061 virtual double distanceToPoint(const Eigen::Vector4f p);
00062 virtual double signedDistanceToPoint(const Eigen::Vector3f p);
00063 virtual double distanceToPoint(const Eigen::Vector3f p);
00064 virtual double distance(const Plane& another);
00065 virtual double angle(const Plane& another);
00066 virtual double angle(const Eigen::Vector3f& vector);
00067 virtual void project(const Eigen::Vector3f& p, Eigen::Vector3f& output);
00068 virtual void project(const Eigen::Vector3d& p, Eigen::Vector3d& output);
00069 virtual void project(const Eigen::Vector3d& p, Eigen::Vector3f& output);
00070 virtual void project(const Eigen::Vector3f& p, Eigen::Vector3d& output);
00071 virtual void project(const Eigen::Affine3f& pose, Eigen::Affine3f& output);
00072 virtual Eigen::Vector3f getNormal();
00073 virtual Eigen::Vector3f getPointOnPlane();
00074 virtual Plane transform(const Eigen::Affine3d& transform);
00075 virtual Plane transform(const Eigen::Affine3f& transform);
00076 virtual void toCoefficients(std::vector<float>& output);
00077 virtual std::vector<float> toCoefficients();
00078 virtual double getD();
00079 virtual Eigen::Affine3f coordinates();
00080 protected:
00081 virtual void initializeCoordinates();
00082 Eigen::Vector3f normal_;
00083 double d_;
00084 Eigen::Affine3f plane_coordinates_;
00085 private:
00086 };
00087
00088 }
00089
00090 #endif
00091
00092