jarjar
jarjar

Reputation: 81

OpenCV camera calibration world coordinate system origin

in OpenCV, what is the default world coordinate system origin after calibration of two cameras?

Upvotes: 1

Views: 1837

Answers (1)

Francesco Callari
Francesco Callari

Reputation: 11785

I believe it used to be the position of the top-left corner of the checkerboard in the first calibration image, but it may have changed. You can visualize it by writing a few lines of code that project point (0,0,0) (in calibrated scene coordinates) in all the calibration images, then plotting its projected image coordinates on top of the image themselves.

You should really not depend on it being anything meaningful, and instead locate a separate feature in 3D and roto-translate the reference frame to it after calibration.

Upvotes: 2

Related Questions