All Projects → InitAction → car-OCR

InitAction / car-OCR

Licence: other
基于机器学习和OCR的车牌识别系统 @fujunhao

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to car-OCR

Multi-Type-TD-TSR
Extracting Tables from Document Images using a Multi-stage Pipeline for Table Detection and Table Structure Recognition:
Stars: ✭ 174 (+346.15%)
Mutual labels:  ocr, machine-learning-algorithms
Didicallcar
这是我自己做的一个类似滴滴打车的Android出行项目,主要针对滴滴等出行平台一直饱受质疑的“人车不符”问题,以及当前越发火热的或计划和出海战略,给出行项目增加了下面几个功能: 1. RFID识别验证功能:在司机证件或者车内识别硬件嵌入RFID识别芯片,乘客使用手机读取到芯片信息,并且通过网络发送到出行平台数据库进行验证(我用JNI加了一个C语言的MD5加密算法对识别到的信息进行了加密)。如果不是合规的“人”或“车”,则不能完成订单并向平台或监管单位汇报当前位置。(为了方便读者测试,可以使用手机读取任何一个加密或非加密RFID芯片,比如银行卡、公交卡等,我在代码中的验证前阶段把芯片信息都换成我自己的司机信息,确保读者测试时可以收到服务器的回复) 2. 海外版功能:点击切换当前语言。 3. 司机证件号码识别功能:读取司机证件上的证件号码,也可以用来与出行平台数据库的接单司机信息进行。I complete this whole project on my own . Including Android application programming,web server ( Apache + PHP + MySQL), and UI. 1.Map route planing。You can use mobile phone choose pick up & destination address,application provide address name hint and draw optimized route for user , then call car for you. 2.RFID authentication function:User can use application to scan driver license or other RFID hardware, then use NDK MD5 algorithm encrypt RFID number, and send it to Web Server Database, check with driver information and authenticate ID number , if ID number coherent with driver info , send back driver information to User and continue call car order . record user location and alert if ID not coherent. 3.Driver License Number Recognition : Application can recognize driver license digit number ,and also can send to web server for authentication & feed back result to user.
Stars: ✭ 935 (+2297.44%)
Mutual labels:  car, ocr
AI Learning Hub
AI Learning Hub for Machine Learning, Deep Learning, Computer Vision and Statistics
Stars: ✭ 53 (+35.9%)
Mutual labels:  machine-learning-algorithms, svm-classifier
Statistical-Learning-using-R
This is a Statistical Learning application which will consist of various Machine Learning algorithms and their implementation in R done by me and their in depth interpretation.Documents and reports related to the below mentioned techniques can be found on my Rpubs profile.
Stars: ✭ 27 (-30.77%)
Mutual labels:  machine-learning-algorithms, svm-classifier
bitcoin-prediction
bitcoin prediction algorithms
Stars: ✭ 21 (-46.15%)
Mutual labels:  machine-learning-algorithms, svm-classifier
screenshot-actions
Dunst actions for screenshots (OCR, upload to 0x0.st, delete, rename, move to/from clipboard)
Stars: ✭ 49 (+25.64%)
Mutual labels:  ocr
PRLib
Pre-Recognition Library - library with algorithms for improving OCR quality.
Stars: ✭ 22 (-43.59%)
Mutual labels:  ocr
Android-Text-Scanner
Read text and numbers with android camera OCR
Stars: ✭ 27 (-30.77%)
Mutual labels:  ocr
Iron-OCR-Image-to-Text-in-CSharp
Image to Text Tutorial in C# - See https://ironsoftware.com/csharp/ocr/tutorials/how-to-read-text-from-an-image-in-csharp-net/
Stars: ✭ 65 (+66.67%)
Mutual labels:  ocr
Diabetic-Retinopathy-Detection
DIAGNOSIS OF DIABETIC RETINOPATHY FROM FUNDUS IMAGES USING SVM, KNN, and attention-based CNN models with GradCam score for interpretability,
Stars: ✭ 31 (-20.51%)
Mutual labels:  svm-classifier
sdp
Deep nonparametric estimation of discrete conditional distributions via smoothed dyadic partitioning
Stars: ✭ 15 (-61.54%)
Mutual labels:  machine-learning-algorithms
staff identity card ocr project
Staff Identity Card OCR Project
Stars: ✭ 15 (-61.54%)
Mutual labels:  ocr
reinforced-race
A model car learns driving along a track using reinforcement learning
Stars: ✭ 37 (-5.13%)
Mutual labels:  car
pdf2xml-viewer
A simple viewer and inspection tool for text boxes in PDF documents
Stars: ✭ 82 (+110.26%)
Mutual labels:  ocr
data-algorithms-with-spark
O'Reilly Book: [Data Algorithms with Spark] by Mahmoud Parsian
Stars: ✭ 34 (-12.82%)
Mutual labels:  machine-learning-algorithms
RL-2018
Reinforcement Learning at UCLA IPAM RIPS 2018
Stars: ✭ 15 (-61.54%)
Mutual labels:  machine-learning-algorithms
easyocr
easy to ocr
Stars: ✭ 49 (+25.64%)
Mutual labels:  ocr
Seating Chart
Optimizing a Wedding Reception Seating Chart Using a Genetic Algorithm
Stars: ✭ 25 (-35.9%)
Mutual labels:  machine-learning-algorithms
fastML
A Python package built on sklearn for running a series of classification Algorithms in a faster and easier way.
Stars: ✭ 40 (+2.56%)
Mutual labels:  machine-learning-algorithms
VehicleInfoOCR
Use your camera to read number plates and obtain vehicle details. Simple, ad-free and faster alternative to existing playstore apps
Stars: ✭ 35 (-10.26%)
Mutual labels:  ocr

Car-OCR

基于机器学习和OCR的车牌识别系统 @fujunhao

1、运行环境

服务端:jdk1.8、OpenCV 2.4.9 客户端:能上网的浏览器即可(windows、linux、android不限)

2、 开发环境

操作系统:windows7 64位 编程语言:Java(要求至少jdk1.8以上) 开发工具:Eclipse 第三方库:OpenCV2.4.9 、Spring Boot Maven依赖以及版本要求:

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.bytedeco</groupId>
			<artifactId>javacv</artifactId>
			<version>0.11</version>
		</dependency>
		<dependency>
			<groupId>org.bytedeco</groupId>
			<artifactId>javacpp</artifactId>
			<version>0.11</version>
		</dependency>

3、OpenCV安装说明(windows下)

4、将Car-OCR项目导入Eclipse工作空间里

注意:这个项目使用Maven管理的,所以要在开发环境中配置好Maven

4、添加Spring Boot依赖(用作web接口开发)

5、添加好依赖后,如果项目不报错就可以运行启动了

  • 启动类 src/org.easypr/MainApplication
  • 启动方法 运行MainApplication里的主方法即可
  • 控制台的日志正常输出,不报错即可

6、系统测试

  • 访问主页 http://localhost:8080/ (默认8080端口,如果需要部署到公网上,改成80端口即可)

  • 图片上传

  • 车牌识别 控制台输出识别日志如下:

结果返回形式为json

{"status":201,"response":["川C2888B"],"date":"2017-06-06 20:35:36"}

7、 接口参数说明

{"status":201,"response":["川C2888B"],"date":"2017-06-06 20:35:36"}
  • 字段说明
status: 201 表示成功调用接口;-1 表示调用接口失败
response: 识别结果数组(返回的识别为可能的字符top2)
date:代表当前时间戳
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].