Commit 09c84a01 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #10389 from wxzs5:yangli

parents 325cbd7c b19cd937
......@@ -70,7 +70,7 @@ for fname in glob.glob('left*.jpg'):
corners2 = cv.cornerSubPix(gray,corners,(11,11),(-1,-1),criteria)
# Find the rotation and translation vectors.
ret,rvecs, tvecs, inliers = cv.solvePnP(objp, corners2, mtx, dist)
ret,rvecs, tvecs = cv.solvePnP(objp, corners2, mtx, dist)
# project 3D points to image plane
imgpts, jac = cv.projectPoints(axis, rvecs, tvecs, mtx, dist)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment