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
Its just a minor thing to add and most probably not so many ppl. are using it, but to keep up the PCL implementation style all the specialized registration methods could provide the shared_ptr shortcut ::Ptr.
As an example we can take a look into the public part of pcl::gicp class:
using Ptr = shared_ptr< GeneralizedIterativeClosestPoint<PointSource, PointTarget> >;
using ConstPtr = shared_ptr< const GeneralizedIterativeClosestPoint<PointSource, PointTarget> >;
The text was updated successfully, but these errors were encountered:
Its just a minor thing to add and most probably not so many ppl. are using it, but to keep up the PCL implementation style all the specialized registration methods could provide the
shared_ptr
shortcut::Ptr
.As an example we can take a look into the public part of pcl::gicp class:
The text was updated successfully, but these errors were encountered: