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
In registration/include/pcl/registration/impl/icp.hpp: line 145
// We should be doing something like this
// for (size_t i = 0; i < correspondence_rejectors_.size (); ++i)
// {
// correspondence_rejectors_[i]->setTargetCloud (target_);
// if (target_has_normals_)
// correspondence_rejectors_[i]->setTargetNormals (target_);
// }
and line 177:
// We should be doing something like this
// correspondence_rejectors_[i]->setInputSource (input_transformed);
// if (source_has_normals_)
// correspondence_rejectors_[i]->setInputNormals (input_transformed);
I think code should be uncommented for any CorrespondenceRejector to work. But just uncommenting doesn't help, because the setXXX methods are not defined in class CorrespondenceRejector.