1 | initial version |
Try this:
(kps5, descs5) = cv2.BRISK_create(10).detectAndCompute(gray,None)
t = cv2.drawKeypoints(gray,
kp,
None,
flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)
2 | No.2 Revision |
Try this:
(kps5, descs5) = cv2.BRISK_create(10).detectAndCompute(gray,None)
t = cv2.drawKeypoints(gray,
kp,
None,
flags=cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)