资源简介
python车牌检测识别代码,个人感觉还是不错,识别率比较高!
代码片段和文件信息
import numpy as np
import cv2
from hyperlpr_py3 import pipline
# 定义旋转rotate函数
def rotate(image angle center=None scale=1.0):
# 获取图像尺寸
(h w) = image.shape[:2]
# 若未指定旋转中心,则将图像中心设为旋转中心
if center is None:
center = (w / 2 h / 2)
# 执行旋转
M = cv2.getRotationMatrix2D(center angle scale)
image_rotated = cv2.warpAffine(image M (w h))
# 返回旋转后的图像
return image_rotated
capture = cv2.VideoCapture(0)
while(True):
# 获取一帧
ret frame = capture.read()
frame_rotated = rotate(frame 180)
# 调用车牌识别模块
frame_ res = pipline.SimpleRecognizePlate(frame_rotated)
#htitch = np.hstack((frame_rotated frame_))
#cv2.imshow(‘License Plate Detection Recognition‘ htitch)
cv2.imshow(‘License Plate Detection Recognition‘ frame_)
if cv2.waitKey(1) == ord(‘q‘):
break
相关资源
- 树莓派Python编程指南.[美]Alex Bradbury
- Effective Python(中、英文版本带目录)
- python知网爬虫
- Python for Data Analysis 数据含USDA食品数据
- python编程从零基础到项目实战PPT
- grpcio-1.24.3-cp37-cp37m-linux_armv7l.whl
- 《Python从入门到精通》PPT课件.rar
- python3.7.0-64位完整版安装包
- python machine learningpython机器学习(中
- Django 2 Web Development Cookbook 3rd Editio
- python3.7.0.zip
- 《Python金融大数据分析》高清完整P
- 流畅的python中文版
- tensorflow1.0.0 python2.7 linux版安装文件
- PYTHON数据可视化编程实战matplotlib中文
- OpenCV_ Computer Vision Projects with Python.P
- python音乐播放器
- Python深度学习+2018中文版pdf+英文版p
- 机器学习实战Python 开发 高清 非扫描
- Python深度学习中文版
- python大数据
- Python项目开发实战 第2版(完整版)
- onvif-python调用
- Python编程快速上手 让繁琐工作自动化
- SELENIUM 2 自动化测试实战 基于PYTHON语
- Python与数据挖掘中文高清完整版PDF
- Python编程123
- python3.6 64位安装包
- vc_redist.2015.exe
- Python编程从入门到实践课件
评论
共有 条评论