Nonlinear solver such as Levenberg- Marquardt
Hi, I need to use a nonlinear solver in OpenCV. Does OpenCV support it or I need to use 3rd lib such as Ceres or Dlib?
Thanks a lot.
YL
Asked: 2020-07-08 04:43:24 -0600
Seen: 772 times
Last updated: Jul 08 '20
There is this LMSolver in OpenCV.
You can find some example in the OpenCV source code, for instance. It should be something like supplying your functions to compute the errors vector and the Jacobian.
Thank you so much!