在一张图片上画一个numpy数组表示的,名称为targetdot的红色的点
时间: 2024-06-02 14:09:13 浏览: 65
图片带数字红点
下面是在一张图片上画一个numpy数组表示的名为targetdot的红色点的代码:
``` python
import numpy as np
import cv2
# 创建一张黑色背景的图片
img = np.zeros((512, 512, 3), np.uint8)
# 定义红色的BGR值
red = (0, 0, 255)
# 定义numpy数组表示的红点
targetdot = np.array([256, 256])
# 在图片上画红色的点
cv2.circle(img, tuple(targetdot), 5, red, -1)
# 显示图片
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
运行以上代码后,会生成一张黑色背景的图片,并在图片中心画出一个红色的点,如下图所示:
![targetdot](https://img-blog.csdnimg.cn/20210908165743856.png)
阅读全文