You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (step < first_steps || planar_dist < max_planar_d) {
filtered_sample_inds.push_back(sample_inds[i]);
}
}
}
timer[2]->stop();
/// point to plane optimization
This essentially "moves" the minimum of the cost function at each iteration of ICP.
If we fixed filtered_samples_inds after the initialization steps, it might allow ICP to converge faster.
Currently, it often takes 20-40 iterations of ICP to converge which seems like too much.
The text was updated successfully, but these errors were encountered:
Currently, we resample the
filtered_samples_inds
at each iteration of ICP:vtr3/main/src/vtr_lidar/src/modules/odometry/odometry_icp_module.cpp
Lines 281 to 295 in 0dc3213
This essentially "moves" the minimum of the cost function at each iteration of ICP.
If we fixed
filtered_samples_inds
after the initialization steps, it might allow ICP to converge faster.Currently, it often takes 20-40 iterations of ICP to converge which seems like too much.
The text was updated successfully, but these errors were encountered: