cv2.rectangle() 白色
时间: 2023-11-10 20:20:17 浏览: 153
您可以使用OpenCV中的`cv2.rectangle()`函数来绘制一个白色的矩形框。该函数需要传入以下参数:
`cv2.rectangle(image, start_point, end_point, color, thickness)`
- `image`:要在其上绘制矩形的图像
- `start_point`:矩形左上角的坐标(x,y)
- `end_point`:矩形右下角的坐标(x,y)
- `color`:矩形的颜色,这里可以使用白色,可以是一个RGB值或一个元组 (255, 255, 255)
- `thickness`:矩形边框的厚度,如果为-1,则表示填充整个矩形
以下是一个例子,演示如何使用`cv2.rectangle()`绘制一个白色的矩形框:
```python
import cv2
# 创建一个空白图像
image = np.zeros((500, 500, 3), dtype=np.uint8)
# 定义矩形的起始点和结束点
start_point = (100, 100)
end_point = (400, 400)
# 绘制白色矩形框
color = (255, 255, 255)
thickness = 2
cv2.rectangle(image, start_point, end_point, color, thickness)
# 显示图像
cv2.imshow("White Rectangle", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
运行上述代码后,您将看到一个在黑色图像上绘制的白色矩形框。
阅读全文