用lables配置物体标签的代码
时间: 2023-05-31 20:04:09 浏览: 83
vue Treeselect 树形下拉框:获取选中节点的ids和lables操作
以下是在Python中使用lables配置物体标签的示例代码:
```python
import cv2
# Load the image
img = cv2.imread('image.jpg')
# Define the labels for the objects
labels = ['cat', 'dog', 'bird']
# Draw the labels on the image
for i, label in enumerate(labels):
cv2.putText(img, label, (10, (i+1)*50), cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2)
# Display the image with labels
cv2.imshow('Image with Labels', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在这个示例中,我们首先加载了一个名为“image.jpg”的图像。然后,我们定义一个标签列表,其中包含三个不同的标签(“cat”,“dog”和“bird”)。
接下来,我们使用OpenCV的putText函数将标签绘制在图像上。对于每个标签,我们指定其位置,字体,颜色和线宽。
最后,我们使用imshow函数显示带有标签的图像,并使用waitKey和destroyAllWindows函数等待用户关闭窗口。
阅读全文