We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5332ba9 commit 96b7395Copy full SHA for 96b7395
cpp/open3d/t/pipelines/registration/Registration.cpp
@@ -404,10 +404,12 @@ RegistrationResult MultiScaleICP(
404
// To calculate final `fitness` and `inlier_rmse` for the current
405
// `transformation` stored in `result`.
406
if (scale_idx == num_scales - 1) {
407
+ bool preserved_converged_flag = result.converged_;
408
result = ComputeRegistrationResult(
409
source_down_pyramid[scale_idx], target_nns,
410
max_correspondence_distances[scale_idx],
411
result.transformation_);
412
+ result.converged_ = preserved_converged_flag;
413
}
414
415
// No correspondences.
0 commit comments