资源简介
车牌识别,MATLAB源代码,夜间车牌识别程序
代码片段和文件信息
clear all
clc
PS=imread(‘1.jpg‘);
subplot(121);
imshow(PS)
title(‘原图‘)
p=rgb2gray(PS);
subplot(122)
imshow(p)
title(‘原灰度图‘)
[mn]=size(p);
GP=zeros(1256);
for k=0:255
GP(k+1)=length(find(p==k))/(m*n);
end
figure
subplot(121);
bar(0:255GP‘g‘)
title(‘原灰度直方图‘)
max_index=[];
for i=3:length(GP)-2
if((GP(i)>=GP(i+1))&(GP(i)>=GP(i-1)))&((GP(i+1)>=GP(i+2))&(GP(i-1)>=GP(i-2)))
max_index(end+1)=i-1;
end
end
possible=GP(max_index);
[max_valueindex]=max(possible);
TT=max_index(index)-2;
[mn]=size(p);
R=zeros(mn);
for i=1:m
for j=1:n
if p(ij) R(ij)=0;
else R(ij)=256;
end
end
end
subplot(122);
imshow(R);
title(‘二值图‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 37069 2009-03-05 09:25 1.jpg
文件 737 2020-03-10 21:43 chepai.m
- 上一篇:尚硅谷_Vue全家桶
- 下一篇:SOC 采用开路电压法和安时积分法相结合的算法
评论
共有 条评论