Guest User

Untitled

a guest
Jun 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. M, mask = cv2.findHomography(src_pts, dst_pts, cv2.RANSAC,5.0)
  2.  
  3. dst = cv2.warpPerspective(img2, M)
  4.  
  5. TypeError: Required argument 'dsize' (pos 3) not found
  6.  
  7. dst = cv2.warpPerspective(img2, M, img2.shape)
  8.  
  9. TypeError: function takes exactly 2 arguments (3 given)
Add Comment
Please, Sign In to add comment