Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

How i can get the matrix and distortion from the calibration file on python new module

0 votes
I trying to create a new Aruco module (python) in Jevois Inventor but i can't make work the estimatePoseSingleMarkers method; this method need a matrix and distortion parameters but i don't know how to get them

Do you have some complete example in python for the aruco demo ?

Thanks on advance
asked Feb 27, 2019 in Programmer Questions by leonidesfelix (140 points)

1 Answer

0 votes
Check out these two modules:

http://jevois.org/moddoc/FirstPython/modinfo.html

source at http://jevois.org/basedoc/src_2Modules_2FirstPython_2FirstPython_8py_source.html

and

http://jevois.org/moddoc/PythonObject6D/modinfo.html

source at http://jevois.org/basedoc/src_2Modules_2PythonObject6D_2PythonObject6D_8py_source.html

both have a function loadCameraCalibration() which you can re-use in your own code. Also see how we then project points, etc in there.
answered Feb 28, 2019 by JeVois (46,580 points)
...