• 大小: 2.34M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-02-12
  • 语言: Matlab
  • 标签: 车牌识别  matlab  

资源简介

车牌识别的全套MATLAB算法,附3篇参考文献

资源截图

代码片段和文件信息

function [off]=plate_area(flp_longlp_wideT_edge)
%定位车牌区域
%lp_long车牌长度lp_wide车牌宽度T_edge边界检测阈值
    f1=f;
    lp_edge=edge(f1T_edge);
    lp_edge=double(lp_edge);
    
    [s1s2]=size(f1);
    MAX=0;
    for i=1:(s1-lp_wide)
        for j=1:(s2-lp_long)
            m=sum(sum(lp_edge(i:i+lp_widej:j+lp_long)));
            if m>MAX
                MAX=m;
                I=i;
                J=j;
            end
        end
    end
    area=zeros(size(f));
    area(I:I+lp_wideJ-3:J)=1;
    area(I:I+lp_wideJ+lp_long:J+lp_long+3)=1;
    area(I:I+3J:J+lp_long)=1;
    area(I+lp_wide:I+lp_wide+3J:J+lp_long)=1;
    figure
    imshow(lp_edge) 
    title(‘图像边界‘)
    figure
    imshow(lp_edge|area)
    title(‘图像边界&车牌区域‘)
    f(I:I+lp_wideJ-3:J)=255;
    f(I:I+

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     目录          0  2010-10-27 22:56  信号估计

     文件    1570816  2010-11-03 19:10  信号估计\License Plate Recognition (中文版)from.ppt

     文件    1661952  2010-11-03 19:10  信号估计\License Plate Recognition(最终版).ppt

     文件      38912  2010-11-06 17:35  信号估计\presentation.doc

     文件     144642  2010-10-29 13:22  信号估计\车牌图像识别二值化研究.kdh

     文件     104753  2010-11-03 22:08  信号估计\基于CCD的汽车牌照自动识别系统.caj

     文件     131260  2010-11-03 22:08  信号估计\一种复杂背景下的多车牌图像分割与识别方法.caj

     目录          0  2010-11-03 20:29  信号估计\license_plate_identify

     文件     538254  2010-10-30 15:34  信号估计\license_plate_identify\track.bmp

     文件      53366  2010-11-01 23:45  信号估计\license_plate_identify\BMW1.JPG

     文件     104566  2010-11-02 23:55  信号估计\license_plate_identify\BMW2.jpg

     文件      64110  2010-10-30 16:55  信号估计\license_plate_identify\plate.bmp

     文件       1207  2010-11-03 22:08  信号估计\license_plate_identify\plate_area.m

     文件       3044  2010-11-03 00:47  信号估计\license_plate_identify\plate_word.m

     文件        759  2010-11-06 17:32  信号估计\license_plate_identify\presentation_BMW.m

     文件         90  2010-11-06 17:32  信号估计\license_plate_identify\presentation_plate.m

     文件        331  2010-11-06 17:32  信号估计\license_plate_identify\presentation_track.m

----------- ---------  ---------- -----  ----

              4418062                    17


评论

共有 条评论