python+OpenCV实现车牌号码识别
作者:PYH1009 时间:2023-04-13 14:50:20
基于python+OpenCV的车牌号码识别,供大家参考,具体内容如下
车牌识别行业已具备一定的市场规模,在电子警察、公路卡口、停车场、商业管理、汽修服务等领域已取得了部分应用。一个典型的车辆牌照识别系统一般包括以下4个部分:车辆图像获取、车牌定位、车牌字符分割和车牌字符识别
1、车牌定位的主要工作是从获取的车辆图像中找到汽车牌照所在位置,并把车牌从该区域中准确地分割出来
这里所采用的是利用车牌的颜色(黄色、蓝色、绿色) 来进行定位
#定位车牌
def color_position(img,output_path):
colors = [([26,43,46], [34,255,255]), # 黄色
([100,43,46], [124,255,255]), # 蓝色
([35, 43, 46], [77, 255, 255]) # 绿色
]
hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
for (lower, upper) in colors:
lower = np.array(lower, dtype="uint8") # 颜色下限
upper = np.array(upper, dtype="uint8") # 颜色上限
# 根据阈值找到对应的颜色
mask = cv2.inRange(hsv, lowerb=lower, upperb=upper)
output = cv2.bitwise_and(img, img, mask=mask)
k = mark_zone_color(output,output_path)
if k==1:
return 1
# 展示图片
#cv2.imshow("image", img)
#cv2.imshow("image-color", output)
#cv2.waitKey(0)
return 0
2、将车牌提取出来
def mark_zone_color(src_img,output_img):
#根据颜色在原始图像上标记
#转灰度
gray = cv2.cvtColor(src_img,cv2.COLOR_BGR2GRAY)
#图像二值化
ret,binary = cv2.threshold(gray,0,255,cv2.THRESH_BINARY)
#轮廓检测
x,contours,hierarchy = cv2.findContours(binary,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
#drawing = img
#cv2.drawContours(drawing, contours, -1, (0, 0, 255), 3) # 填充轮廓颜色
#cv2.imshow('drawing', drawing)
#cv2.waitKey(0)
#print(contours)
temp_contours = [] # 存储合理的轮廓
car_plates=[]
if len(contours)>0:
for contour in contours:
if cv2.contourArea(contour) > Min_Area:
temp_contours.append(contour)
car_plates = []
for temp_contour in temp_contours:
rect_tupple = cv2.minAreaRect(temp_contour)
rect_width, rect_height = rect_tupple[1]
if rect_width < rect_height:
rect_width, rect_height = rect_height, rect_width
aspect_ratio = rect_width / rect_height
# 车牌正常情况下宽高比在2 - 5.5之间
if aspect_ratio > 2 and aspect_ratio < 5.5:
car_plates.append(temp_contour)
rect_vertices = cv2.boxPoints(rect_tupple)
rect_vertices = np.int0(rect_vertices)
if len(car_plates)==1:
oldimg = cv2.drawContours(img, [rect_vertices], -1, (0, 0, 255), 2)
#cv2.imshow("che pai ding wei", oldimg)
# print(rect_tupple)
break
#把车牌号截取出来
if len(car_plates)==1:
for car_plate in car_plates:
row_min,col_min = np.min(car_plate[:,0,:],axis=0)
row_max,col_max = np.max(car_plate[:,0,:],axis=0)
cv2.rectangle(img,(row_min,col_min),(row_max,col_max),(0,255,0),2)
card_img = img[col_min:col_max,row_min:row_max,:]
cv2.imshow("img",img)
cv2.imwrite(output_img + '/' + 'card_img' + '.jpg',card_img)
cv2.imshow("card_img.",card_img)
cv2.waitKey(0)
cv2.destroyAllWindows()
return 1
return 0
来源:https://blog.csdn.net/PYH1009/article/details/102951768
标签:python,opencv,识别
0
投稿
猜你喜欢
Python中使用Inotify监控文件实例
2021-03-03 14:17:05
Python实现文件按照日期命名的方法
2022-10-25 19:40:09
详解如何用模块化的方式写vuejs
2024-04-27 16:08:04
sql 取代游标的写法示例
2024-01-18 13:48:04
Ubuntu20.04环境安装tensorflow2的方法步骤
2023-07-04 06:41:21
vue单页应用中如何使用jquery的方法示例
2024-05-09 10:40:14
[图]关于网站开发中缓存 cache应用
2008-08-19 18:14:00
一篇文章入门Python生态系统(Python新手入门指导)
2023-11-03 01:12:00
python编写softmax函数、交叉熵函数实例
2023-11-24 07:08:11
如何判断字段的类型?
2010-01-18 20:48:00
屏蔽Flash 右键菜单的方法
2008-05-24 07:21:00
用ASP判断客户端浏览器语言自动跳转
2010-07-09 13:34:00
MySQL Redo与Undo日志详细解析
2024-01-26 04:40:09
Python中如何创建多线程?
2022-11-25 15:52:34
PHP面向对象程序设计类的定义与用法简单示例
2023-11-22 17:31:17
获取mssql的xml返回结构的方法
2007-08-23 12:52:00
Python中的文本相似度的计算方法总结
2021-02-08 08:40:37
PyTorch中clone()、detach()及相关扩展详解
2022-06-29 17:50:34
Sql Server触发器的使用
2024-01-19 15:08:39
决策树的python实现方法
2023-04-22 04:25:02