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
Make sure both model and data points are normalized to fit in [-1,1]3 prior to running
I have two point clouds lets call it X (3xN) and Y (3xM). There are in general floats. What is the exact scaling I need to do? Also, do I need to scale the result of go-ICP back (inverse scaling?)
X_cap := (X - mean_colwise( X ) ) / max_colwise( X ) - min_colwise( X )
The text was updated successfully, but these errors were encountered:
The exact idea here is that your point clouds need to be within the 1x1x1 dimension bounds for the algorithm to work correctly. So find the maximum bounds of is in x, y, or z and scale it to be within 1 and other dimensions scale proportionally.
I guess @vma1996 is doing the exact thing via the given code example. Close the issue of it solves our answers your problem.
I am a little confused about the scaling part:
I have two point clouds lets call it X (3xN) and Y (3xM). There are in general floats. What is the exact scaling I need to do? Also, do I need to scale the result of go-ICP back (inverse scaling?)
The text was updated successfully, but these errors were encountered: