Skip to content

Instantly share code, notes, and snippets.

@jkarnows
Created September 3, 2017 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkarnows/f015bc53c160cc972ab2bcaf30f07c26 to your computer and use it in GitHub Desktop.
Save jkarnows/f015bc53c160cc972ab2bcaf30f07c26 to your computer and use it in GitHub Desktop.
Drawing a circle with OpenCV
from cv2 import circle
# Input code here to determine the center of the circle, (x,y) and the radius.
color = (0,255,0)
thickness = 2
cv2.circle(img,(x,y),radius,color,thickness)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment