资源简介
【实例简介】
比较简陋的车辆牌照识别,起个抛砖引玉的作用
需要引用百度AipSdk,Newtonsoft.Json,自行在网上下载
API_KEY和SECRET_KEY 自行申请
【核心代码】
richTextBox6.Text = "";
var client = new Baidu.Aip.Ocr.Ocr(API_KEY, SECRET_KEY);
filePath = FileDialogHelper.OpenImage();
if (!string.IsNullOrEmpty(filePath))
{
pictureBox1.Image = Image.FromFile(filePath);
var image = File.ReadAllBytes(filePath);
pictureBox1.Refresh();
// 如果有可选参数
var options = new Dictionary<string, object>
{
{"multi_detect", "true"}
};
var result = client.LicensePlate(image, options);
LicensePlate.RootObject rb = JsonConvert.DeserializeObject<LicensePlate.RootObject>(result.ToString());
List<LicensePlate.Words_result> Result_info = rb.words_result;
string value = "";
richTextBox6.Text = "";
List<LicensePlate.Vertexes_location> mylocation = new List<LicensePlate.Vertexes_location>();
if (Result_info == null)
{
richTextBox6.Text = "无法识别车辆牌照";
return;
}
value = "共识别到" Result_info.Count.ToString() "个车牌" "\r\n";
for (int i = 0; i < Result_info.Count; i )
{
mylocation = Result_info[i].vertexes_location;
DrawLine(mylocation[0].x, mylocation[0].y, mylocation[1].x, mylocation[1].y, pictureBox1);
pictureBox1.Refresh();
DrawLine(mylocation[1].x, mylocation[1].y, mylocation[2].x, mylocation[2].y, pictureBox1);
pictureBox1.Refresh();
DrawLine(mylocation[2].x, mylocation[2].y, mylocation[3].x, mylocation[3].y, pictureBox1);
pictureBox1.Refresh();
DrawLine(mylocation[3].x, mylocation[3].y, mylocation[0].x, mylocation[0].y, pictureBox1);
pictureBox1.Refresh();
value = "第" (i 1).ToString() "个" Result_info[i].color " " Result_info[i].number "\r\n";
richTextBox6.Text = richTextBox6.Text "\r\n" value;
}
pictureBox1.Refresh();
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Baidu.Aip.Ocr;
using WHC.framework.Commons;
using System.IO;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
namespace 车牌识别
{
public partial class Form1 : Form
{
string filePath;
string API_KEY = “你的API_KEY“;
string SECRET_KEY = “你的SECRET_KEY“;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender EventArgs e)
{
richTextBox6.Text = ““;
var client = new Baidu.Aip.Ocr.Ocr(API_KEY SECRET_KEY);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A..H. 41984 2019-05-14 12:35 车牌识别\身份证识别.v12.suo
文件 57344 2019-05-10 11:28 车牌识别\车辆牌照识别\AipSdk.dll
文件 66381 2019-05-10 11:28 车牌识别\车辆牌照识别\AipSdk.xm
文件 187 2019-05-10 11:30 车牌识别\车辆牌照识别\App.config
文件 57344 2019-05-10 11:28 车牌识别\车辆牌照识别\bin\Debug\AipSdk.dll
文件 66381 2019-05-10 11:28 车牌识别\车辆牌照识别\bin\Debug\AipSdk.xm
文件 525824 2017-06-18 13:56 车牌识别\车辆牌照识别\bin\Debug\Newtonsoft.Json.dll
文件 215392 2017-06-18 13:56 车牌识别\车辆牌照识别\bin\Debug\Newtonsoft.Json.pdb
文件 527790 2017-06-18 13:56 车牌识别\车辆牌照识别\bin\Debug\Newtonsoft.Json.xm
文件 821248 2019-05-07 09:58 车牌识别\车辆牌照识别\bin\Debug\WHC.fr
文件 1004436 2014-12-19 20:29 车牌识别\车辆牌照识别\bin\Debug\WHC.fr
文件 13312 2019-05-14 12:44 车牌识别\车辆牌照识别\bin\Debug\身份证识别.exe
文件 187 2019-05-10 11:30 车牌识别\车辆牌照识别\bin\Debug\身份证识别.exe.config
文件 36352 2019-05-14 12:44 车牌识别\车辆牌照识别\bin\Debug\身份证识别.pdb
文件 23168 2019-05-14 12:44 车牌识别\车辆牌照识别\bin\Debug\身份证识别.vshost.exe
文件 187 2019-05-10 11:30 车牌识别\车辆牌照识别\bin\Debug\身份证识别.vshost.exe.config
文件 490 2013-03-18 17:00 车牌识别\车辆牌照识别\bin\Debug\身份证识别.vshost.exe.manifest
文件 4034 2019-05-14 12:46 车牌识别\车辆牌照识别\Form1.cs
文件 4105 2019-05-14 12:44 车牌识别\车辆牌照识别\Form1.Designer.cs
文件 5817 2019-05-14 12:31 车牌识别\车辆牌照识别\Form1.resx
文件 971 2019-05-14 12:44 车牌识别\车辆牌照识别\LicensePlate.cs
文件 525824 2017-06-18 13:56 车牌识别\车辆牌照识别\Newtonsoft.Json.dll
文件 215392 2017-06-18 13:56 车牌识别\车辆牌照识别\Newtonsoft.Json.pdb
文件 527790 2017-06-18 13:56 车牌识别\车辆牌照识别\Newtonsoft.Json.xm
文件 865 2019-05-10 11:30 车牌识别\车辆牌照识别\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 7483 2019-05-14 12:38 车牌识别\车辆牌照识别\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 0 2019-05-10 11:30 车牌识别\车辆牌照识别\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2019-05-10 11:30 车牌识别\车辆牌照识别\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2019-05-10 11:30 车牌识别\车辆牌照识别\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
文件 3686 2019-05-14 12:35 车牌识别\车辆牌照识别\obj\Debug\身份证识别.csproj.FileListAbsolute.txt
............此处省略29个文件信息
相关资源
- 利用ASP.NET和百度地图API开发的校园地
- C# 相对可用的车牌识别系统
- c# 自定义TextBox 模糊匹配 百度 谷歌搜
- python3 GPS数据纠偏类适用谷歌、高德、
- 仿百度搜索框提示效果C#写的
- ASP.net视频教程从入门到高级+电子书
- C# 百度地图瓦片器
- C# winfrom窗体显示百度地图
- 百度翻译APIC#
- 一套类moba的教学视频百度云地址
- 百度云C#开发实战1200例书和光盘
- 百度开源webuploader文件上传组件ASP.N
- WPF自定义文本下拉框模仿百度搜索
- C#上的echarts的
- C#车牌识别
- C#读取本地数据源数据,在百度地图上
- C# 百度文字识别Demo
- c# 调用百度地图API
- halcon联合C#车牌识别
- C#高级编程(第10版)C# 6 .NET Core 1.0
- c#入门经典 第六版 地址 百度网盘
- C#版本模拟登陆百度,2018年4月27日可
- 百度翻译API,C#接口。
- C#窗口实现百度云人脸识别
- C#(VS2017)百度语音识别demo
- winform调用百度地图
- 用C#开发的百度地图根据经纬度标记地
- winform C# 实现百度地图
- WinformC# 模拟登陆百度 HttpWebRequest的应
- C# 高德地图百度地图计算两点坐标距
评论
共有 条评论