|
楼主 |
发表于 2023-7-18 23:19:56
|
显示全部楼层
1.用python显示一个直线
- import cv2
- import numpy as np
- newImageInfo=(500,500,3) #定义图片的宽高信息
- x=100
- def disp():
- global x
- dst=np.zeros(newImageInfo,np.uint8)
- #绘制线段
- x=x+10
- cv2.line(dst,(x,100),(400,400),(0,0,255))
- '''line函数说明:第一个参数表示目标图片数据,
- 二表示线段起始位置,三表示终止位置,四表示线段的颜色'''
- cv2.imshow('dst',dst)#展示绘制结果
- cv2.waitKey(500)
- while 1:
- disp()
复制代码 |
|