-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Hi author, thanks for the excellent code, but I have a problem when testing with my own data, my matches always deviate from my target object. No matter how much I change the parameters, the results are still not improved (default sparsePoseRefinement and densePoseRefinement are set to true),where should I go to solve this kind of problem? Looking forward to your answer!
Here are my parameter settings:
detector.trainModel(model, 0.025f);
detector.matchScene(scene, pose, score, 0.025f, 0.25f, 0.1f, ppf::MatchParam{1, 10, true, false, 0.5, 0, true, true, 50, 0.3}, &result);

In the figure, the white point cloud is the target point cloud and the red point cloud is the result of matching. You can see that the two are off and not perfectly aligned, but if I just set the sparsePoseRefinement to true and the sensePoseRefinement to false, yet I get a good match.