draw a circle over image opencv

后端 未结 3 1710
野趣味
野趣味 2021-02-07 03:25

Im usign python and opencv to get a image from the webcam, and I want to know how to draw a circle over my image, just a simple green circle with transparent fill

3条回答
  •  梦毁少年i
    2021-02-07 04:06

    try

    cv2.circle(img, center, radius, color[, thickness[, lineType[, shift]]])
    

    See the documentation for more details

提交回复
热议问题