Skip to content

Commit 37caef4

Browse files
authored
fix(ndt_scan_matcher): fix the covariance calculation (autowarefoundation#10252)
Fix the covariance calculation Signed-off-by: Anh Nguyen <anh.nguyen.2@tier4.jp>
1 parent e60daf7 commit 37caef4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

localization/autoware_ndt_scan_matcher/src/ndt_omp/multi_voxel_grid_covariance_omp_impl.hpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -434,9 +434,7 @@ void pclomp::MultiVoxelGridCovariance<PointT>::computeLeafParams(
434434
Leaf & leaf) const
435435
{
436436
// Single pass covariance calculation
437-
leaf.cov_ = (leaf.cov_ - 2 * (pt_sum * leaf.mean_.transpose())) / leaf.nr_points_ +
438-
leaf.mean_ * leaf.mean_.transpose();
439-
leaf.cov_ *= (leaf.nr_points_ - 1.0) / leaf.nr_points_;
437+
leaf.cov_ = (leaf.cov_ - pt_sum * leaf.mean_.transpose()) / (leaf.nr_points_ - 1);
440438

441439
// Normalize Eigen Val such that max no more than 100x min.
442440
eigensolver.compute(leaf.cov_);

0 commit comments

Comments
 (0)