我是靠谱客的博主 负责舞蹈,最近开发中收集的这篇文章主要介绍使用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)

最后

以上就是负责舞蹈为你收集整理的使用opencv,对图像进行画框并展示/保存的全部内容,希望文章能够帮你解决使用opencv,对图像进行画框并展示/保存所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部