Ask Your Question

Carl Pun's profile - activity

2015-12-07 03:06:35 -0600 asked a question Best Fit line in 3D

Suppose there is a list of 3D points(x,y,z), I would like to calculate the line which has the minimum sum of distance away from the each of the point. Can I obtain the result by using svd class in opencv?If so , how ?

2015-12-02 07:10:20 -0600 commented answer use of SVD

I see. Thank you

2015-12-02 07:10:05 -0600 received badge  Supporter (source)
2015-12-01 05:41:55 -0600 commented answer use of SVD

Thank you very much. I have an additional question. What is the difference betweeen backSubst and the direct SVD calculation?(link: http://docs.opencv.org/master/df/df7/... last two public member functions

2015-11-30 10:27:45 -0600 asked a question use of SVD

I would like to calculate the best fit plane with the svd class in opencv. But I do not know how to use it. I have a vector of point3f. What is the correction way to us SVD class. My problem is mainly do not know how to pass the correct parameter into the function. Would anyone provide me a sample code so that I can follow?