• 大小: 9KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-11
  • 语言: Matlab
  • 标签: matlab  车牌识别  

资源简介

使用matlab实现车牌识别,包括图像预处理、提取连通区域、去除边框、字符分割、字符识别等操作

资源截图

代码片段和文件信息

clear;
close all;
%*************************************************************************%
%<1>读取图像并显示
yuanshi=imread(‘2.jpg‘);%读入图像
huidu=rgb2gray(yuanshi);%原始图像转为灰度图像
figuresubplot(121)imshow(yuanshi)title(‘原始图像‘);
subplot(122)imshow(huidu)title(‘灰度图像‘);
%*************************************************************************%
%<2>图像预处理
junhenghua=histeq(huidu);%图像均衡化 
lvbo=ordfilt2(junhenghua5ones(33));%中值滤波%%
%%s=strel(‘disk‘10);%
%sed=imtophat(lvbos);另一种边缘增强法%%
f=[-1-1-1;-18-1;-1-1-1]/9;
guass=uint8(filter2(flvbo));%使用高斯滤波
%figureimshow(guass);
sed=imadd(junhenghuaguass);%与图像相加得增强图像
figuresubplot(221)imshow(junhenghua)title(‘直方图均衡化后图像‘);
subplot(222)imshow(lvbo)title(‘中值滤波后图像‘);
subplot(223)imshow(sed)title(‘增强图像‘);
%%subpl

评论

共有 条评论