1 | initial version |
Ok I can reproduce your error . Use named parameter :
t= cv2.drawKeypoints(image,p, outImage=None, color=(0, 0, 255), flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)
2 | No.2 Revision |
Ok I can reproduce your error . Use named parameter :
t= cv2.drawKeypoints(image,p, 3 | No.3 Revision |
Ok I can reproduce your error . Use named parameter :
t= cv2.drawKeypoints(image,p, outImage=blank, color=(0, 0, 255),
flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)
Reference https://www.python.org/dev/peps/pep-3102/
4 | No.4 Revision |
Ok I can reproduce your error . Use named parameter :
t= cv2.drawKeypoints(image,p, outImage=blank, color=(0, 0, 255),
flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)
Reference https://www.python.org/dev/peps/pep-3102/
5 | No.5 Revision |
Ok I can reproduce your error . Use named parameter :
t= cv2.drawKeypoints(image,p, outImage=blank, color=(0, 0, 255),
flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)
Reference https://www.python.org/dev/peps/pep-3102/