Levenberg Marquardt in calibration opencv

I tried to understand Levenberg-Marquardt algorithm implementation in OpenCv Camera Calibration. In W.Burger's paper-> here

I saw this Matrix in page 24.

So what does theoretically mean of this matrix' each cell?

And how it implemented in openCv code.

Upvotes: 0

Views: 1508

Answers (1)

Shmuel Fine
Shmuel Fine

Reputation: 351

Levenberg Marquardt is a classical algorithm for non-linear optimization. OpenCV indeed uses it for camera calibration. One should understand the algorithm in general before diving into its usage in OpenCV. Specifically, the matrix that you've pointed out is the Jacobian, a generalization of one dimensional derivative to multidimensional function.

Upvotes: 0

Related Questions