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 NURBS_TOOLS_H
00039 #define NURBS_TOOLS_H
00040
00041 #include <pcl/surface/on_nurbs/nurbs_data.h>
00042
00043 #include <pcl/surface/3rdparty/opennurbs/opennurbs.h>
00044
00045 #undef Success
00046 #include <Eigen/Dense>
00047
00048 namespace pcl
00049 {
00050 namespace on_nurbs
00051 {
00052
00053 enum
00054 {
00055 NORTH = 1, NORTHEAST = 2, EAST = 3, SOUTHEAST = 4, SOUTH = 5, SOUTHWEST = 6, WEST = 7, NORTHWEST = 8
00056 };
00057
00059 class NurbsTools
00060 {
00061 public:
00062
00063
00064
00065
00069 static unsigned
00070 getClosestPoint (const Eigen::Vector2d &point, const vector_vec2d &data);
00071
00075 static unsigned
00076 getClosestPoint (const Eigen::Vector3d &point, const vector_vec3d &data);
00077
00084 static unsigned
00085 getClosestPoint (const Eigen::Vector2d &point, const Eigen::Vector2d &dir, const vector_vec2d &data,
00086 unsigned &idxcp);
00087
00090 static Eigen::Vector3d
00091 computeMean (const vector_vec3d &data);
00094 static Eigen::Vector2d
00095 computeMean (const vector_vec2d &data);
00096
00099 static Eigen::Vector3d
00100 computeVariance (const Eigen::Vector3d &mean, const vector_vec3d &data);
00103 static Eigen::Vector2d
00104 computeVariance (const Eigen::Vector2d &mean, const vector_vec2d &data);
00105
00107 static void
00108 computeBoundingBox (const ON_NurbsCurve &nurbs, Eigen::Vector3d &_min, Eigen::Vector3d &_max);
00109 static void
00110 computeBoundingBox (const ON_NurbsSurface &nurbs, Eigen::Vector3d &_min, Eigen::Vector3d &_max);
00111
00112 static double
00113 computeRScale (const Eigen::Vector3d &_min, const Eigen::Vector3d &_max);
00114
00120 static void
00121 pca (const vector_vec3d &data, Eigen::Vector3d &mean, Eigen::Matrix3d &eigenvectors,
00122 Eigen::Vector3d &eigenvalues);
00123
00129 static void
00130 pca (const vector_vec2d &data, Eigen::Vector2d &mean, Eigen::Matrix2d &eigenvectors,
00131 Eigen::Vector2d &eigenvalues);
00132
00137 static void
00138 downsample_random (const vector_vec3d &data1, vector_vec3d &data2, unsigned size);
00143 static void
00144 downsample_random (vector_vec3d &data1, unsigned size);
00145
00146 };
00147
00148 }
00149 }
00150
00151 #endif