android的车牌识别系统EasyPR

上篇文章介绍了身份证识别,现在我们来说说关于车牌识别。

EasyPR是一个开源的中文车牌识别系统,gitHub地址:https://github.com/liuruoze/EasyPR

EasyPR有如下特点:
1. 它基于openCV这个开源库,这意味着所有它的代码都可以轻易的获取。
2. 它能够识别中文。例如车牌为苏EUK722的图片,它可以准确地输出std:string类型的”苏EUK722”的结果。
3. 它的识别率较高。目前情况下,字符识别已经可以达到90%以上的精度。


使用方法

package com.android.guocheng.easypr;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.fosung.libeasypr.view.EasyPRPreSurfaceView;
import com.fosung.libeasypr.view.EasyPRPreView;

public class MainActivity extends AppCompatActivity {

    private EasyPRPreView easyPRPreView;
    private Button btnShutter;
    private TextView text;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        easyPRPreView = (EasyPRPreView) findViewById(R.id.preSurfaceView);
        btnShutter = (Button) findViewById(R.id.btnShutter);
        text = (TextView) findViewById(R.id.text);
        initListener();
    }

    @Override
    protected void onStart() {
        super.onStart();
        if (easyPRPreView != null) {
            easyPRPreView.onStart();
        }
    }

    @Override
    protected void onStop() {
        super.onStop();
        if (easyPRPreView != null) {
            easyPRPreView.onStop();
        }
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        if (easyPRPreView != null) {
            easyPRPreView.onDestroy();
        }
    }

    private void initListener() {
        easyPRPreView.setRecognizedListener(new EasyPRPreSurfaceView.OnRecognizedListener() {
            @Override
            public void onRecognized(String result) {
                if (result == null || result.equals("0")) {
                    Toast.makeText(MainActivity.this, "换个姿势试试!", Toast.LENGTH_SHORT).show();
                } else {
                    Toast.makeText(MainActivity.this, "识别成功", Toast.LENGTH_SHORT).show();
                    text.setText(result);
                }
            }
        });
        btnShutter.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                easyPRPreView.recognize();//开始识别
            }
        });
    }
}

布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#00000000">

    <com.fosung.libeasypr.view.EasyPRPreView
        android:id="@+id/preSurfaceView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <Button
        android:id="@+id/btnShutter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="10dp"
        android:text="识别"
        android:textSize="16sp"
        android:textColor="#FFFFFF"
        android:background="@color/colorAccent"/>

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:gravity="center"
        android:textColor="#FFFFFF"
        android:textSize="16dp"
        android:text="请将车牌放入框内"/>
    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:gravity="center"
        android:textColor="#FFFFFF"
        android:textSize="18dp"
        android:layout_below="@+id/title"/>

</RelativeLayout>

别忘了在manifest加入摄像机权限<uses-permission android:name="android.permission.CAMERA" />
app在运行时,有车牌限定框,在框的范围内进行图像裁剪,人为缩小了识别范围,提高识别度。
本库基于EasyPR_Android

效果图:
这里写图片描述

最后附上demo源码:https://github.com/guocheng0606/EasyPRForAndroid

Android车牌识别是指在Android系统上进行车牌识别的技术。通过使用车牌识别核心,结合计算机视觉技术和图像处理技术,可以在Android设备上实现对车辆的车牌信息的准确识别。车牌识别核心可以通过视频预览的方式,实时地从图像或视频中定位车辆信息,然后提取车牌信息,并进行字符分割和OCR识别。Android车牌识别具有识别速度快、适应性强、支持多种车牌种类等特点。启智畅想车牌识别核心是一种Android车牌识别SDK开发包,具有毫秒级识别速度和高识别率,可以方便地集成到现有系统中。它支持识别蓝牌、黄牌、新能源车牌等多种车牌种类,适用于白天、晚上、远距离和大角度的识别场景。使用Android车牌识别技术可以广泛应用于高速公路超速抓拍、小区门口关卡、车库入口关卡等场景。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *2* [Android车牌识别SDK](https://blog.csdn.net/qizhiteach/article/details/117332342)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [android端使用openCV与深度学习实现车牌识别](https://blog.csdn.net/u011686167/article/details/79029765)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值