@@ -111,17 +111,17 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
111
111
struct Leaf
112
112
{
113
113
/* * \brief Constructor.
114
- * Sets \ref nr_points, \ref icov_, \ref mean_ and \ref e_vals_ to 0 and \ref cov_ and \ref
115
- * e_vecs_ to the identity matrix
114
+ * Sets \ref nr_points, \ref icov_, \ref mean_ and \ref eigen_values_ to 0 and \ref cov_ and \ref
115
+ * eigen_vectors_ to the identity matrix
116
116
*/
117
117
Leaf ()
118
118
: nr_points(0 ),
119
119
// mean_ (Eigen::Vector3d::Zero ()),
120
120
centroid ()
121
121
// cov_ (Eigen::Matrix3d::Identity ()),
122
122
// icov_ (Eigen::Matrix3d::Zero ()),
123
- // e_vecs_ (Eigen::Matrix3d::Identity ()),
124
- // e_vals_ (Eigen::Vector3d::Zero ())
123
+ // eigen_vectors_ (Eigen::Matrix3d::Identity ()),
124
+ // eigen_values_ (Eigen::Vector3d::Zero ())
125
125
{
126
126
}
127
127
@@ -159,7 +159,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
159
159
// Eigen::Matrix3d
160
160
// getEvecs () const
161
161
// {
162
- // return (e_vecs_ );
162
+ // return (eigen_vectors_ );
163
163
// }
164
164
165
165
/* * \brief Get the eigen values of the voxel covariance.
@@ -169,7 +169,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
169
169
// Eigen::Vector3d
170
170
// getEvals () const
171
171
// {
172
- // return (e_vals_ );
172
+ // return (eigen_values_ );
173
173
// }
174
174
175
175
/* * \brief Get the number of points contained by this voxel.
@@ -195,10 +195,10 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
195
195
// Eigen::Matrix3d icov_;
196
196
197
197
/* * \brief Eigen vectors of voxel covariance matrix */
198
- // Eigen::Matrix3d e_vecs_ ;
198
+ // Eigen::Matrix3d eigen_vectors_ ;
199
199
200
200
/* * \brief Eigen values of voxel covariance matrix */
201
- // Eigen::Vector3d e_vals_ ;
201
+ // Eigen::Vector3d eigen_values_ ;
202
202
203
203
PointCloud points;
204
204
};
0 commit comments