神剑山庄资源网 Design By www.hcban.com
一、 题目描述
测量所给图片的高度,即上下边缘间的距离。
思路:
- 将图片进行阈值操作得到二值化图片。
- 截取只包含上下边框的部分,以便于后续的轮廓提取
- 轮廓检测
- 得到结果
二、 实现过程
1.用于给图片添加中文字符
#用于给图片添加中文字符 def ImgText_CN(img, text, left, top, textColor=(0, 255, 0), textSize=20): if (isinstance(img, np.ndarray)): #判断是否为OpenCV图片类型 img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) draw = ImageDraw.Draw(img) fontText = ImageFont.truetype(r'C:\Windows\Fonts\simsun.ttc', textSize, encoding="utf-8") ##中文字体 draw.text((left, top), text, textColor, font=fontText) #写文字 return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)
2.实现图片反色功能
#实现图片反色功能 def PointInvert(img): height, width = img.shape #获取图片尺寸 for i in range(height): for j in range(width): pi = img[i, j] img[i, j] = 255 - pi return img
3.边缘检测
# canny边缘检测 edges = cv2.Canny(th, 30, 70) res=PointInvert(edges) #颜色反转 #显示图片 cv2.imshow('original', th) #显示二值化后的图,主题为白色,背景为黑色 更加容易找出轮廓 key = cv2.waitKey(0) if key==27: #按esc键时,关闭所有窗口 print(key) cv2.destroyAllWindows()
4.轮廓操作
contours, hierarchy = cv2.findContours(th, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) #得到轮廓 cnt = contours[0] #取出轮廓 x, y, w, h = cv2.boundingRect(cnt) #用一个矩形将轮廓包围 img_gray = cv2.cvtColor(res, cv2.COLOR_GRAY2BGR) #将灰度转化为彩色图片方便画图 cv2.line(img_gray, (x, y), (x + w, y), (0,0,255), 2, 5) #上边缘 cv2.line(img_gray, (x, y+h), (x + w, y+h), (0, 0, 255), 2, 5) #下边缘 img1[80:230, 90:230] = img_gray #用带有上下轮廓的图替换掉原图的对应部分
5.显示图片
res1=ImgText_CN(img1, '宽度%d'%h, 25, 25, textColor=(0, 255, 0), textSize=30) #绘制文字 #显示图片 cv2.imshow('original', res1) key = cv2.waitKey(0) if key==27: #按esc键时,关闭所有窗口 print(key) cv2.destroyAllWindows()
6.完整代码
import cv2 import numpy as np from PIL import Image, ImageDraw, ImageFont #用于给图片添加中文字符 def ImgText_CN(img, text, left, top, textColor=(0, 255, 0), textSize=20): if (isinstance(img, np.ndarray)): #判断是否为OpenCV图片类型 img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) draw = ImageDraw.Draw(img) fontText = ImageFont.truetype(r'C:\Windows\Fonts\simsun.ttc', textSize, encoding="utf-8") ##中文字体 draw.text((left, top), text, textColor, font=fontText) #写文字 return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR) #实现图片反色功能 def PointInvert(img): height, width = img.shape #获取图片尺寸 for i in range(height): for j in range(width): pi = img[i, j] img[i, j] = 255 - pi return img img=cv2.imread("gongjian1.bmp",0) #加载彩色图 img1=cv2.imread("gongjian1.bmp",1) #加载灰度图 recimg = img[80:230, 90:230] #截取需要的部分 img2 = img1[80:230, 90:230] #截取需要的部分 ret, th = cv2.threshold(recimg, 90, 255, cv2.THRESH_BINARY) #阈值操作二值化 # canny边缘检测 edges = cv2.Canny(th, 30, 70) res=PointInvert(edges) #颜色反转 #显示图片 cv2.imshow('original', th) #显示二值化后的图,主题为白色,背景为黑色 更加容易找出轮廓 key = cv2.waitKey(0) if key==27: #按esc键时,关闭所有窗口 print(key) cv2.destroyAllWindows() contours, hierarchy = cv2.findContours(th, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) #得到轮廓 cnt = contours[0] #取出轮廓 x, y, w, h = cv2.boundingRect(cnt) #用一个矩形将轮廓包围 img_gray = cv2.cvtColor(res, cv2.COLOR_GRAY2BGR) #将灰度转化为彩色图片方便画图 cv2.line(img_gray, (x, y), (x + w, y), (0,0,255), 2, 5) #上边缘 cv2.line(img_gray, (x, y+h), (x + w, y+h), (0, 0, 255), 2, 5) #下边缘 img1[80:230, 90:230] = img_gray #用带有上下轮廓的图替换掉原图的对应部分 res1=ImgText_CN(img1, '宽度%d'%h, 25, 25, textColor=(0, 255, 0), textSize=30) #绘制文字 #显示图片 cv2.imshow('original', res1) key = cv2.waitKey(0) if key==27: #按esc键时,关闭所有窗口 print(key) cv2.destroyAllWindows()
三、 运行结果(效果)
四、 问题及解决方法
红色轮廓没有显示,解决方案:将灰度图转化为彩色图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
神剑山庄资源网 Design By www.hcban.com
神剑山庄资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
神剑山庄资源网 Design By www.hcban.com
暂无Python OpenCV实现测量图片物体宽度的评论...
更新日志
2024年11月20日
2024年11月20日
- Rhymist / LusciousBB《年轮》[FLAC/分轨][410.02MB]
- 群星《歌手2024 第11期》[320K/MP3][93.88MB]
- 群星《歌手2024 第11期》[FLAC/分轨][496.06MB]
- 群星《国风超有戏 第7期》[320K/MP3][30.73MB]
- 模拟之声慢刻CD《试音天品8[女声低音炮]》[低速原抓WAV+CUE]
- 群星《抖烧第三季DSD》[低速原抓WAV+CUE]
- [ABC]蔡琴《百万琴歌[6N纯银镀膜]》[低速原抓WAV+CUE]
- 群星《国风超有戏 第7期》[FLAC/分轨][147.99MB]
- 群星《闪光的夏天 第3期》[320K/MP3][61.94MB]
- 群星《闪光的夏天 第3期》[FLAC/分轨][336MB]
- 【迷幻电音】Elea-2024-Hypnos(FLAC)
- 【民族融合】VA-2024-TheOrientCollective:GoldenSand(FLAC)
- 谭嘉仪-EyesOnMe新曲+精选2022【低速原抓WAV+CUE】
- 尚士达《莫回头》[320K/MP3][184.64MB]
- 尚士达《莫回头》[Hi-Res][24bit 48kHz][FLAC/分轨][1.27G]