2 Star 10 Fork 2

Chaihb/车牌识别

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Demo_投影法.py 758 Bytes
一键复制 编辑 原始数据 按行查看 历史
# coding=gbk
import cv2
import numpy as np
img = cv2.imread('1.jpg')
cv2.imshow('card', img)
img = cv2.imread('1.jpg', 0)
cv2.imshow('gary', img)
height, width = img.shape
# 对图像进行二值化处理
thres, binary = cv2.threshold(img, 0, 255, cv2.THRESH_OTSU + cv2.THRESH_BINARY_INV)
cv2.imshow('threshold', binary)
# print(img.shape)
paint = np.zeros(img.shape, dtype=np.uint8)
# 每一列黑色像素个数
pointSum = np.zeros(width, dtype=np.uint8)
for x in range(width):
for y in range(height):
if binary[y][x]:
pointSum[x] = pointSum[x] + 1
for x in range(width):
for y in range(height)[::-1]:
if (pointSum[x]):
paint[y][x] = 255
pointSum[x] = pointSum[x] - 1
cv2.imshow('paint', paint)
cv2.waitKey(0)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/chai-haobo/License_plate_recognition.git
git@gitee.com:chai-haobo/License_plate_recognition.git
chai-haobo
License_plate_recognition
车牌识别
master

搜索帮助