python,opencv 画线
时间: 2023-07-07 20:42:54 浏览: 115
python 画线
要用 Python 和 OpenCV 画线,可以按以下步骤操作:
1. 导入 OpenCV 库
```
import cv2
```
2. 读取图像文件
```
img = cv2.imread('image.png')
```
3. 定义起点和终点坐标
```
start_point = (0, 0)
end_point = (100, 100)
```
4. 定义线条颜色和粗细
```
color = (255, 0, 0)
thickness = 2
```
5. 在图像上画线
```
img = cv2.line(img, start_point, end_point, color, thickness)
```
6. 显示图像
```
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这样就可以在图像上画一条从 (0,0) 到 (100,100) 的蓝色线条,粗细为 2 像素。如果需要画多条线,可以重复 3-5 步骤,每次修改起点和终点坐标、线条颜色和粗细即可。
阅读全文