Skip to content

Commit fe15267

Browse files
committed
fix
1 parent c7de7e8 commit fe15267

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

sensing/tier4_pcl_extensions/include/tier4_pcl_extensions/voxel_grid_nearest_centroid.hpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -111,17 +111,17 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
111111
struct Leaf
112112
{
113113
/** \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
116116
*/
117117
Leaf()
118118
: nr_points(0),
119119
// mean_ (Eigen::Vector3d::Zero ()),
120120
centroid()
121121
// cov_ (Eigen::Matrix3d::Identity ()),
122122
// 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 ())
125125
{
126126
}
127127

@@ -159,7 +159,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
159159
// Eigen::Matrix3d
160160
// getEvecs () const
161161
// {
162-
// return (e_vecs_);
162+
// return (eigen_vectors_);
163163
// }
164164

165165
/** \brief Get the eigen values of the voxel covariance.
@@ -169,7 +169,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
169169
// Eigen::Vector3d
170170
// getEvals () const
171171
// {
172-
// return (e_vals_);
172+
// return (eigen_values_);
173173
// }
174174

175175
/** \brief Get the number of points contained by this voxel.
@@ -195,10 +195,10 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
195195
// Eigen::Matrix3d icov_;
196196

197197
/** \brief Eigen vectors of voxel covariance matrix */
198-
// Eigen::Matrix3d e_vecs_;
198+
// Eigen::Matrix3d eigen_vectors_;
199199

200200
/** \brief Eigen values of voxel covariance matrix */
201-
// Eigen::Vector3d e_vals_;
201+
// Eigen::Vector3d eigen_values_;
202202

203203
PointCloud points;
204204
};

0 commit comments

Comments
 (0)