Skip to content

Commit

Permalink
fix(tier4_pcl_extensions): fix spell check (autowarefoundation#6434)
Browse files Browse the repository at this point in the history
* fix covar -> cov

* fix evals and evecs

* fix

* fix

* style(pre-commit): autofix

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and StepTurtle committed Feb 27, 2024
1 parent 7a5d9d5 commit dccc740
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,17 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
struct Leaf
{
/** \brief Constructor.
* Sets \ref nr_points, \ref icov_, \ref mean_ and \ref evals_ to 0 and \ref cov_ and \ref
* evecs_ to the identity matrix
* Sets \ref nr_points, \ref icov_, \ref mean_ and \ref eigen_values_ to 0 and \ref cov_ and
* \ref eigen_vectors_ to the identity matrix
*/
Leaf()
: nr_points(0),
// mean_ (Eigen::Vector3d::Zero ()),
centroid()
// cov_ (Eigen::Matrix3d::Identity ()),
// icov_ (Eigen::Matrix3d::Zero ()),
// evecs_ (Eigen::Matrix3d::Identity ()),
// evals_ (Eigen::Vector3d::Zero ())
// eigen_vectors_ (Eigen::Matrix3d::Identity ()),
// eigen_values_ (Eigen::Vector3d::Zero ())
{
}

Expand Down Expand Up @@ -153,23 +153,23 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
// }

/** \brief Get the eigen vectors of the voxel covariance.
* \note Order corresponds with \ref getEvals
* \note Order corresponds with \ref getEigenValues
* \return matrix whose columns contain eigen vectors
*/
// Eigen::Matrix3d
// getEvecs () const
// getEigenVectors () const
// {
// return (evecs_);
// return (eigen_vectors_);
// }

/** \brief Get the eigen values of the voxel covariance.
* \note Order corresponds with \ref getEvecs
* \note Order corresponds with \ref getEigenVectors
* \return vector of eigen values
*/
// Eigen::Vector3d
// getEvals () const
// getEigenValues () const
// {
// return (evals_);
// return (eigen_values_);
// }

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

/** \brief Eigen vectors of voxel covariance matrix */
// Eigen::Matrix3d evecs_;
// Eigen::Matrix3d eigen_vectors_;

/** \brief Eigen values of voxel covariance matrix */
// Eigen::Vector3d evals_;
// Eigen::Vector3d eigen_values_;

PointCloud points;
};
Expand All @@ -217,7 +217,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
: searchable_(true),
// min_points_per_voxel_ (6),
min_points_per_voxel_(1),
// min_covar_eigenvalue_mult_ (0.01),
// min_cov_eigenvalue_mult_ (0.01),
leaves_(),
voxel_centroids_(),
voxel_centroids_leaf_indices_(),
Expand Down Expand Up @@ -258,12 +258,12 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
inline int getMinPointPerVoxel() { return min_points_per_voxel_; }

/** \brief Set the minimum allowable ratio between eigenvalues to prevent singular covariance
* matrices. \param[in] min_covar_eigenvalue_mult the minimum allowable ratio between eigenvalues
* matrices. \param[in] min_cov_eigenvalue_mult the minimum allowable ratio between eigenvalues
*/
// inline void
// setCovEigValueInflationRatio (double min_covar_eigenvalue_mult)
// setCovEigValueInflationRatio (double min_cov_eigenvalue_mult)
// {
// min_covar_eigenvalue_mult_ = min_covar_eigenvalue_mult;
// min_cov_eigenvalue_mult_ = min_cov_eigenvalue_mult;
// }

/** \brief Get the minimum allowable ratio between eigenvalues to prevent singular covariance
Expand All @@ -272,7 +272,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>
// inline double
// getCovEigValueInflationRatio ()
// {
// return min_covar_eigenvalue_mult_;
// return min_cov_eigenvalue_mult_;
// }

/** \brief Filter cloud and initializes voxel structure.
Expand Down Expand Up @@ -517,7 +517,7 @@ class VoxelGridNearestCentroid : public VoxelGrid<PointT>

/** \brief Minimum allowable ratio between eigenvalues to prevent singular covariance
* matrices. */
// double min_covar_eigenvalue_mult_;
// double min_cov_eigenvalue_mult_;

/** \brief Voxel structure containing all leaf nodes (includes voxels with less than
* a sufficient number of points). */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ void pcl::VoxelGridNearestCentroid<PointT>::applyFilter(PointCloud & output)

// Eigen values less than a threshold of max eigen value are inflated to a set fraction of the
// max eigen value.
// double min_covar_eigenvalue;
// double min_cov_eigenvalue;

for (typename std::map<size_t, Leaf>::iterator it = leaves_.begin(); it != leaves_.end(); ++it) {
// Normalize the centroid
Expand Down

0 comments on commit dccc740

Please sign in to comment.