Ask Your Question

donzo's profile - activity

2020-08-06 13:09:12 -0600 received badge  Popular Question (source)
2013-07-05 06:41:16 -0600 received badge  Student (source)
2013-01-21 14:42:07 -0600 asked a question Lens distortion equation changed - reference please?

I noticed from this page: http://docs.opencv.org/trunk/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html#id7

That the radial distortion portion of the lens model has changed from previous version such as this http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html

Basically the old model was u = d ( 1 + k_1d^2 + k_2d^4 + ...) where "u" is the undistorted radius and "d" is the distorted radius. That appears to have changed to

u = d ( 1 + k_1d^2 + k_2d^4 + ...) / ( 1 + q_1d^2 + q_2d^4 + ...)

(note in the documentation page q_1 etc are k_4+, and u,d are separated into x", x', y" and y' but hopefully you get the idea.

The older representation I have seen over and over for many years but this new representation is a surprise to me. Is there any references or comments on when this newer model is useful (like more fisheye lenses for example)??

Thanks Don