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
unsignedint/*minNodeSize*/, //!< Min number of points in nodes
ProcessingFunctor& functor
)
{
constunsignedint sizeM = M.size();
constunsignedint sizeQ = Q.size();
for (unsignedint j = 0; j != sizeQ; ++j){
functor.beginPrimitiveCollect(j);
for (unsignedint i = 0; i != sizeM; ++i){
if( M[i].intersectPoint(Q[j], epsilon ))
functor.process(i,j);
}
functor.endPrimitiveCollect(j);
}
}
according to this, I found you set a specific radius when searching in second point cloud.
But when you want to align two point cloud with different scale, I think maybe we can't find a right radius.
So I tried 4pcs and sp4cs with same data.
Here are the results(Tested on hippo model, and resize the second one to 1.2).
OpenGR/src/gr/accelerators/pairExtraction/bruteForceFunctor.h
Lines 85 to 112 in 483e4d5
according to this, I found you set a specific radius when searching in second point cloud.
But when you want to align two point cloud with different scale, I think maybe we can't find a right radius.
So I tried 4pcs and sp4cs with same data.
Here are the results(Tested on hippo model, and resize the second one to 1.2).
s4pcs
4pcs
The text was updated successfully, but these errors were encountered: