使用opencv,对图像进行画框并展示/保存

方法:

# 函数说明:
# (1)cv2.rectangle(img, 左上角,右下角,color,宽度)
# (2)cv2.putText(img,text,开始坐标,字体font,字体大小,color,字体粗细)

样例

import cv2

# 函数说明:
# (1)cv2.rectangle(img, 左上角,右下角,color,宽度)
# (2)cv2.putText(img,text,开始坐标,字体font,字体大小,color,字体粗细)


# step1: 读入数据
text = []
file = open('new_truth.txt')
for item in file:
    x = item.split('\n')
    y = x[0].split(',')
    text.append(y)
# print(text)

# step2: 读入图片
img = cv2.imread('00001.jpg')

# step3: 找到x1,y1,x2,y2
x1 = int(text[0][1])
y1 = int(text[0][2])
x2 = int(text[0][3])
y2 = int(text[0][4])

# step4: 画框
cv2.rectangle(img, (x1, y1), (x2, y2), (100, 210, 20), 2)

# step5: 保存并显示
cv2.imshow('rectangle', img)
cv2.waitKey(0)
cv2.destroyAllWindows()

# cv2.imwrite('text.jpg',img)

你可能感兴趣的:(每日知识积累)