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
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: 788 times
Last updated: Jul 08 '20
Is nonlinear minimization (like Levenberg–Marquardt) directly available?
test NEON-optimized cv::threshold() on mobile device
Is OpenCV in C++ or C significantly faster than python?
Opitmization with TBB [closed]
OpenCV optimizations on Android Tegra3 platform
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!