python opencv 绘制实心圆
时间: 2023-06-02 21:05:03 浏览: 412
python OpenCV学习笔记之绘制直方图的方法
可以使用cv2.circle()函数绘制实心圆,例如:
cv2.circle(img, center, radius, color, thickness=-1)
其中,img为待绘制的图像,center为圆心坐标,radius为半径,color是圆的颜色,thickness为-1时表示填充圆形。
具体实现可以参考以下代码:
import cv2
img = cv2.imread('test.jpg')
center = (100, 100)
radius = 50
color = (255, 0, 0)
thickness = -1
cv2.circle(img, center, radius, color, thickness)
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
阅读全文