Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion registration/include/pcl/registration/impl/ndt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ NormalDistributionsTransform<PointSource, PointTarget, Scalar>::computeTransform
return;
}
#endif
// Negative for maximization as opposed to minimization
// Newton step obtained by solving H * delta = -gradient
Eigen::Matrix<double, 6, 1> delta = sv.solve(-score_gradient);

// Calculate step length with guaranteed sufficient decrease [More, Thuente 1994]
Expand Down
Loading