声振论坛

 找回密码
 我要加入

QQ登录

只需一步,快速开始

查看: 2369|回复: 7

[图像处理] 求车牌号码识别的程序

[复制链接]
发表于 2007-6-30 21:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?我要加入

x
各位,请问谁有车牌号码识别的程序,帮忙传一下好么?谢谢了!我邮箱是:anglesunny2002@163.com    谢谢!

[ 本帖最后由 eight 于 2007-6-30 23:45 编辑 ]
回复
分享到:

使用道具 举报

发表于 2007-7-1 10:43 | 显示全部楼层
这个或许对你有用,不过完整的程序很难找。自己多做做吧

不好意思附件没传上去,我发你邮箱了

[ 本帖最后由 ChaChing 于 2009-10-25 23:41 编辑 ]
 楼主| 发表于 2007-7-1 18:57 | 显示全部楼层

回复 #3 花如月 的帖子

今天有事,刚看到。谢谢你!
发表于 2007-7-2 09:42 | 显示全部楼层
我也想要一份,谢谢了  我的邮箱是wander19842004@yahoo.com.cn
发表于 2007-7-2 10:17 | 显示全部楼层
资料是Visual C++/matlab图像处理与识别使用案例精选   四维科技  胡小锋 编著  人民邮电出版社
第十二章的程序,太大没法传附件。确认需要的朋友可以加我qq:276320540

[ 本帖最后由 花如月 于 2007-7-2 10:24 编辑 ]
发表于 2009-6-8 17:47 | 显示全部楼层

1111

我也要,麻烦也发我一份 girlsonly@163.com
发表于 2009-10-25 19:37 | 显示全部楼层
可以给我一份吗,谢谢了,lianxioumei@163.com
发表于 2009-10-27 05:17 | 显示全部楼层
希望有参考价值
(source:http://www.mathworks.com/matlabcentral/fileexchange/22766-number-plate-segmentation-of-a-car&watching=22766
% This is a program for extracting objects from an image. Written for vehicle number plate segmentation and extraction
% Authors : Jeny Rajan, Chandrashekar P S
% U can use attached test image for testing
% input - give the image file name as input. eg :- car3.jpg
clc;
clear all;
k=input('Enter the file name','s'); % input image; color image
im=imread(k);
im1=rgb2gray(im);
im1=medfilt2(im1,[3 3]); %Median filtering the image to remove noise%
BW = edge(im1,'sobel'); %finding edges
[imx,imy]=size(BW);
msk=[0 0 0 0 0;
     0 1 1 1 0;
     0 1 1 1 0;
     0 1 1 1 0;
     0 0 0 0 0;];
B=conv2(double(BW),double(msk)); %Smoothing  image to reduce the number of connected components
L = bwlabel(B,8);% Calculating connected components
mx=max(max(L))
% There will be mx connected components.Here U can give a value between 1 and mx for L or in a loop you can extract all connected components
% If you are using the attached car image, by giving 17,18,19,22,27,28 to L you can extract the number plate completely.
[r,c] = find(L==17|L==18|L==19|L==22|L==27|L==28);  
rc = [r c];
[sx sy]=size(rc);
n1=zeros(imx,imy);
for i=1:sx
    x1=rc(i,1);
    y1=rc(i,2);
    n1(x1,y1)=255;
end % Storing the extracted image in an array
figure,imshow(im);
figure,imshow(im1);
figure,imshow(B);
figure,imshow(n1,[]);

[ 本帖最后由 friendchj 于 2009-10-27 05:20 编辑 ]

评分

1

查看全部评分

您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2024-5-5 06:50 , Processed in 0.065458 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表