Hi, I find this work very interesting, as i wish to figure out exactly where my markers are on a non-coplanar ArUco board. I am looking through the code, and am wondering the following:
- I see you use the camera_matrix in calls to
cv2.solvePnP() but not distortion coefficients. Should i undistort my images before using them with the map builder?
- I also see that your project function doesn't take distortion parameters. For the
cv2.solvePnP() calls i could just add them, for this function as you wrote it yourself its more complicated. Could it be replaced with OpenCV functions like cv2.projectPoints() so that distortion coefficients can be used?
Thanks!
Hi, I find this work very interesting, as i wish to figure out exactly where my markers are on a non-coplanar ArUco board. I am looking through the code, and am wondering the following:
cv2.solvePnP()but not distortion coefficients. Should i undistort my images before using them with the map builder?cv2.solvePnP()calls i could just add them, for this function as you wrote it yourself its more complicated. Could it be replaced with OpenCV functions likecv2.projectPoints()so that distortion coefficients can be used?Thanks!