Skip to content

Instantly share code, notes, and snippets.

@DZESU
Created September 5, 2019 08:28
Show Gist options
  • Select an option

  • Save DZESU/34139ef50e5a3e5ddc5809de9dc6514f to your computer and use it in GitHub Desktop.

Select an option

Save DZESU/34139ef50e5a3e5ddc5809de9dc6514f to your computer and use it in GitHub Desktop.
# 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