We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc1f3d commit b19cd93Copy full SHA for b19cd93
doc/py_tutorials/py_calib3d/py_pose/py_pose.markdown
@@ -70,7 +70,7 @@ for fname in glob.glob('left*.jpg'):
70
corners2 = cv.cornerSubPix(gray,corners,(11,11),(-1,-1),criteria)
71
72
# Find the rotation and translation vectors.
73
- ret,rvecs, tvecs, inliers = cv.solvePnP(objp, corners2, mtx, dist)
+ ret,rvecs, tvecs = cv.solvePnP(objp, corners2, mtx, dist)
74
75
# project 3D points to image plane
76
imgpts, jac = cv.projectPoints(axis, rvecs, tvecs, mtx, dist)
0 commit comments