Python opencv简单车牌字符分割

举报
Python新视野 发表于 2021/09/10 00:19:15 2021/09/10
【摘要】 题目描述 利用opencv或其他工具编写程序实现简单车牌字符分割。 实现过程 import cv2 from pathlib import Path import numpy as np c...

题目描述
利用opencv或其他工具编写程序实现简单车牌字符分割。


实现过程

import cv2  
from pathlib import Path
import numpy as np

current_path = Path.cwd()

#读取图片
image1 = cv2.imread(str(Path(current_path.parent, 'test.png')))
cv2.imshow("image1",image1)

#灰度处理
gray = cv2.cvtColor(image1, cv2.COLOR_BGR2GRAY)
cv2.imshow("gray",gray)

#对灰度处理进行反色
fanse = cv2.bitwise_not(gray)
cv2.imshow("fanse",fanse)

#二值化
_, thresh = cv2.threshold(gray, 130, 255, cv2.THRESH_BINARY)    # 阈值分割,得到二值图
cv2.imshow("binary",thresh)

# 水平投影
thresh1 = thresh.copy()
high, width = thresh1.shape    # 返回高和宽
# 初始化一个跟图像高一样长度的数组,用于记录每一行的黑点个数
arr1 = [0 for n in range(0, high)] 
for row in range(0, high):    # 遍历每行
    for column in range(0, width):    # 遍历每列
        if  thresh1[row, column] == 0:    # 判断该点是否为黑点,0代表黑点
            arr1[row] += 1    # 该行的计数器加一
            thresh1[row, column] = 255    # 将其改为白点,即等于255         
for row  in range(0, high):    # 遍历每一行
    for column in range(0, arr1[row]):    # 从该行应该变黑的最左边的点开始向最右边的点设置黑点
        thresh1[row, column] = 0    # 设置黑点
cv2.imshow('hproject', thresh1)

# 垂直投影
thresh2 = thresh.copy()
high, width = thresh2.shape    # 返回高和宽
# 初始化一个跟图像宽一样长度的数组,用于记录每一列的黑点个数
arr2 = [0 for n in range(0, width)]
for column in range(0, width):    # 遍历每一列 
    for row in range(0, high):    # 遍历每一行
        if  thresh2[row, column] == 0:    # 判断该点是否为黑点,0代表是黑点
            arr2[column] += 1     # 该列的计数器加1
            thresh2[row, column] = 255    # 记录完后将其变为白色,即等于255    
for column in range(0, width):    # 遍历每一列
    for row in range(high - arr2[column], high):    # 从该列应该变黑的最顶部的开始向最底部设为黑点
        thresh2[row, column] = 0    # 设为黑点        
cv2.imshow('vproject', thresh2)

# 矩形分割字符
image = cv2.cvtColor(thresh, cv2.COLOR_GRAY2RGB)
red = (0, 0, 255)
# 设置矩形的各参数
cv2.rectangle(image, (15, 20), (70, 120), red, 2)
cv2.rectangle(image, (80, 20), (135, 120), red, 2)
cv2.rectangle(image, (170, 20), (226, 120), red, 2)
cv2.rectangle(image, (233, 20), (290, 120), red, 2)
cv2.rectangle(image, (300, 20), (355, 120), red, 2)
cv2.rectangle(image, (365, 20), (420, 120), red, 2)
cv2.rectangle(image, (425, 20), (485, 120), red, 2)
cv2.imshow('image', image)

cv2.waitKey()
cv2.destroyAllWindows()

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67

运行结果
原图:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

文章来源: blog.csdn.net,作者:Dream丶Killer,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_43965708/article/details/115448753

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。