Bob Fisher
Given a set of N 3D data points
we would like to find the 3D circle that best fits these points.
I'm not aware of a direct solution to this problem, so you can do an optimization fit. I don't think it's good enough to find the best 2D circle fit of the points projected onto their best fitting plane, because the projection process loses information.
For an optimization fit, you need a good starting point. You could:
With the initial fit, then optimize the parameters to obtain a local minimum of the Euclidean distance over all N points.
6 parameters are needed for the fitting:
Then you can minimize:
You get the radius and center
directly, and the plane that the
circle lies in from how M rotates the XY plane.