基于MATLAB的卷积神经网络CNN车牌识别,这个运行就无误,值得参考。
在必过源码也有很多车牌识别的相关资料,你可以去了解一下。
C1gray=imread('E:/car1.jpg');subplot(231),imshow('E:/car1.jpg');title('原始图像');
Cgray=rgb2gray(C1gray);%转为灰度图像
s=strel('disk',25);%获得背景图像
Bgray=imopen(Cgray,s);
Egray=imsubtract(Cgray,Bgray);%两图相减
Fgray=imadjust(Egray,[0.3 0.5],[]);
bw22=im2bw(Fgray);%图像二值化
subplot(232);imshow(Bgray);title('背景图像');
subplot(233);imshow(Egray);title('增强黑白图像');
subplot(234);imshow(Fgray);title('增强对比度图像 ');
subplot(235);imshow(bw22);title('二值图像');
我也是刚学,这是我编的一段程序后面的还没想起来,给你参考下吧
已发送,请查收!发送邮箱396601903@qq.com
我正在做这个,有什么问题可以问我 274552947