[[opencv-python]] 中用于在图像上绘制圆形的函数。
语法
cv2.circle(img, center, redius, color, thickness, lineType, shift)
- img: 使用 [[imread]] 打开的图像
- center: 圆心坐标, (x, y)
- redius: 半径
- color: 颜色, (0, 255, 0), 默认白色
- thickness: 边框的粗细, 默认值 1, -1 为实心
- lineType: 边框的线形, 默认 8 连通线
- shift: 圆心坐标的小数点位数, 默认为 0
大部分参数和 [[rectangle]] 一样