1. cv2.hconcat()、cv2.vconcat()
将从摄像头捕获的多个图像帧,横向(cv2.hconcat)或纵向(cv2.vconcat)拼接到一起,使得可以在一个 window 中进行显示,而不是在不同的 window 中分别显示。
while True:
...
final = cv2.hconcat((img1, img2))
cv2.imshow('final', final)
...
2. 添加文本和几何形状
- 添加文本:cv2.putText(img, ‘IoU: {.4f}’.format(iou), (10, 30), cv2.FONT_HERSHEY_SIMPLEX, .6, (0, 255, 0), 2)
- putText(img, text, org, fontFace, fontScale, color[, thickness[, lineType[, bottomLeftOrigin]]]) -> img
- 几何形状:
- cv2.rectangle(img, pt1, pt2, color[, thickness[, lineType[, shift]]]) -> img
- cv2.line(img, pt1, pt2, color[, thickness[, lineType[, shift]]]) -> img
- cv2.ellipse(img, center, axes, angle, startAngle, endAngle, color[, thickness[, lineType[, shift]]]) -> img or ellipse(img, box, color[, thickness[, lineType]]) -> img
- cv2.circle(img, center, radius, color[, thickness[, lineType[, shift]]]) -> img