Created
September 5, 2019 08:28
-
-
Save DZESU/34139ef50e5a3e5ddc5809de9dc6514f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # draw key point on image | |
| result_image_train = cv2.drawKeypoints(image_train, kp_logo, None, flags=0) | |
| result_image_query = cv2.drawKeypoints(image_query, kp_img, None, flags=0) | |
| cv2.imshow("train image",result_image_train) | |
| cv2.imshow("query image",result_image_query) | |
| cv2.waitKey(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment