├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── ChePai.m ├── ChePaiKu ├── 1 (1).jpg ├── 1 (2).jpg ├── 1 (3).jpg ├── 2 (1).jpg └── 2 (2).jpg ├── Data.xls ├── DuQuHanZi.m ├── DuQuSZZM.m ├── DuQuShuZi.m ├── DuQuZiMu.m ├── MuBanKu ├── 0.BMP ├── 1.BMP ├── 10.BMP ├── 11.BMP ├── 12.BMP ├── 13.BMP ├── 14.BMP ├── 15.BMP ├── 16.BMP ├── 17.BMP ├── 18.BMP ├── 19.BMP ├── 2.BMP ├── 20.BMP ├── 21.BMP ├── 22.BMP ├── 23.BMP ├── 24.BMP ├── 25.BMP ├── 26.BMP ├── 27.BMP ├── 28.BMP ├── 29.BMP ├── 3.BMP ├── 30 - Copy.BMP ├── 30.BMP ├── 31.BMP ├── 32.BMP ├── 33.BMP ├── 4.BMP ├── 5.BMP ├── 6.BMP ├── 7.BMP ├── 8.BMP ├── 9.BMP ├── beijing.BMP ├── chongqing.bmp ├── guangdong.BMP ├── guizhou.bmp ├── jiangsu.BMP ├── shandong.bmp ├── sichuan.bmp └── zhejiang.bmp ├── QieGe.m ├── ShiBieHanZi.m ├── ShiBieSZZM.m ├── ShiBieShuZi.m └── ShiBieZiMu.m /1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/1.jpg -------------------------------------------------------------------------------- /2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/2.jpg -------------------------------------------------------------------------------- /3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/3.jpg -------------------------------------------------------------------------------- /4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/4.jpg -------------------------------------------------------------------------------- /5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/5.jpg -------------------------------------------------------------------------------- /6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/6.jpg -------------------------------------------------------------------------------- /7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/7.jpg -------------------------------------------------------------------------------- /ChePai.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePai.m -------------------------------------------------------------------------------- /ChePaiKu/1 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePaiKu/1 (1).jpg -------------------------------------------------------------------------------- /ChePaiKu/1 (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePaiKu/1 (2).jpg -------------------------------------------------------------------------------- /ChePaiKu/1 (3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePaiKu/1 (3).jpg -------------------------------------------------------------------------------- /ChePaiKu/2 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePaiKu/2 (1).jpg -------------------------------------------------------------------------------- /ChePaiKu/2 (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ChePaiKu/2 (2).jpg -------------------------------------------------------------------------------- /Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/Data.xls -------------------------------------------------------------------------------- /DuQuHanZi.m: -------------------------------------------------------------------------------- 1 | function HanZi=DuQuHanZi(sichuan,guizhou,beijing,chongqing,guangdong,shandong,zhejiang) 2 | HanZi(:,:,1) =imresize(im2bw(sichuan,graythresh(rgb2gray(sichuan))),[110 55],'bilinear'); 3 | HanZi(:,:,2) =imresize(im2bw(guizhou,graythresh(rgb2gray(guizhou))),[110 55],'bilinear'); 4 | HanZi(:,:,3) =imresize(im2bw(beijing,graythresh(rgb2gray(beijing))),[110 55],'bilinear'); 5 | HanZi(:,:,4) =imresize(im2bw(chongqing,graythresh(rgb2gray(chongqing))),[110 55],'bilinear'); 6 | HanZi(:,:,5) =imresize(im2bw(guangdong,graythresh(rgb2gray(guangdong))),[110 55],'bilinear'); 7 | HanZi(:,:,6) =imresize(im2bw(shandong,graythresh(rgb2gray(shandong))),[110 55],'bilinear'); 8 | HanZi(:,:,7) =imresize(im2bw(zhejiang,graythresh(rgb2gray(zhejiang))),[110 55],'bilinear'); -------------------------------------------------------------------------------- /DuQuSZZM.m: -------------------------------------------------------------------------------- 1 | function ShuZiZiMu = DuQuSZZM(s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,... 2 | s11,s12,s13,s14,s15,s16,s17,s18,s19,s20,... 3 | s21,s22,s23,s24,s25,s26,s27,s28,s29,s30,... 4 | s31,s32,s33,s34) 5 | %0-9 6 | %10-14 ABCDE 15-19FGHJK 20-24 LMNPQ 25-29 RSTUV 30-33 WXYZ 7 | ShuZiZiMu(:,:,1) =imresize(im2bw(s1, graythresh(rgb2gray(s1))), [110 55],'bilinear'); 8 | ShuZiZiMu(:,:,2) =imresize(im2bw(s2, graythresh(rgb2gray(s2))), [110 55],'bilinear'); 9 | ShuZiZiMu(:,:,3) =imresize(im2bw(s3, graythresh(rgb2gray(s3))), [110 55],'bilinear'); 10 | ShuZiZiMu(:,:,4) =imresize(im2bw(s4, graythresh(rgb2gray(s4))), [110 55],'bilinear'); 11 | ShuZiZiMu(:,:,5) =imresize(im2bw(s5, graythresh(rgb2gray(s5))), [110 55],'bilinear'); 12 | ShuZiZiMu(:,:,6) =imresize(im2bw(s6, graythresh(rgb2gray(s6))), [110 55],'bilinear'); 13 | ShuZiZiMu(:,:,7) =imresize(im2bw(s7, graythresh(rgb2gray(s7))), [110 55],'bilinear'); 14 | ShuZiZiMu(:,:,8) =imresize(im2bw(s8, graythresh(rgb2gray(s8))), [110 55],'bilinear'); 15 | ShuZiZiMu(:,:,9) =imresize(im2bw(s9, graythresh(rgb2gray(s9))), [110 55],'bilinear'); 16 | ShuZiZiMu(:,:,10) =imresize(im2bw(s10,graythresh(rgb2gray(s10))),[110 55],'bilinear'); 17 | ShuZiZiMu(:,:,11) =imresize(im2bw(s11,graythresh(rgb2gray(s11))),[110 55],'bilinear'); 18 | ShuZiZiMu(:,:,12) =imresize(im2bw(s12,graythresh(rgb2gray(s12))),[110 55],'bilinear'); 19 | ShuZiZiMu(:,:,13) =imresize(im2bw(s13,graythresh(rgb2gray(s13))),[110 55],'bilinear'); 20 | ShuZiZiMu(:,:,14) =imresize(im2bw(s14,graythresh(rgb2gray(s14))),[110 55],'bilinear'); 21 | ShuZiZiMu(:,:,15) =imresize(im2bw(s15,graythresh(rgb2gray(s15))),[110 55],'bilinear'); 22 | ShuZiZiMu(:,:,16) =imresize(im2bw(s16,graythresh(rgb2gray(s16))),[110 55],'bilinear'); 23 | ShuZiZiMu(:,:,17) =imresize(im2bw(s17,graythresh(rgb2gray(s17))),[110 55],'bilinear'); 24 | ShuZiZiMu(:,:,18) =imresize(im2bw(s18,graythresh(rgb2gray(s18))),[110 55],'bilinear'); 25 | ShuZiZiMu(:,:,19) =imresize(im2bw(s19,graythresh(rgb2gray(s19))),[110 55],'bilinear'); 26 | ShuZiZiMu(:,:,20) =imresize(im2bw(s20,graythresh(rgb2gray(s20))),[110 55],'bilinear'); 27 | ShuZiZiMu(:,:,21) =imresize(im2bw(s21,graythresh(rgb2gray(s21))),[110 55],'bilinear'); 28 | ShuZiZiMu(:,:,22) =imresize(im2bw(s22,graythresh(rgb2gray(s22))),[110 55],'bilinear'); 29 | ShuZiZiMu(:,:,23) =imresize(im2bw(s23,graythresh(rgb2gray(s23))),[110 55],'bilinear'); 30 | ShuZiZiMu(:,:,24) =imresize(im2bw(s24,graythresh(rgb2gray(s24))),[110 55],'bilinear'); 31 | ShuZiZiMu(:,:,25) =imresize(im2bw(s25,graythresh(rgb2gray(s25))),[110 55],'bilinear'); 32 | ShuZiZiMu(:,:,26) =imresize(im2bw(s26,graythresh(rgb2gray(s26))),[110 55],'bilinear'); 33 | ShuZiZiMu(:,:,27) =imresize(im2bw(s27,graythresh(rgb2gray(s27))),[110 55],'bilinear'); 34 | ShuZiZiMu(:,:,28) =imresize(im2bw(s28,graythresh(rgb2gray(s28))),[110 55],'bilinear'); 35 | ShuZiZiMu(:,:,29) =imresize(im2bw(s29,graythresh(rgb2gray(s29))),[110 55],'bilinear'); 36 | ShuZiZiMu(:,:,30) =imresize(im2bw(s30,graythresh(rgb2gray(s30))),[110 55],'bilinear'); 37 | ShuZiZiMu(:,:,31) =imresize(im2bw(s31,graythresh(rgb2gray(s31))),[110 55],'bilinear'); 38 | ShuZiZiMu(:,:,32) =imresize(im2bw(s32,graythresh(rgb2gray(s32))),[110 55],'bilinear'); 39 | ShuZiZiMu(:,:,33) =imresize(im2bw(s33,graythresh(rgb2gray(s33))),[110 55],'bilinear'); 40 | ShuZiZiMu(:,:,34) =imresize(im2bw(s34,graythresh(rgb2gray(s34))),[110 55],'bilinear'); 41 | -------------------------------------------------------------------------------- /DuQuShuZi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/DuQuShuZi.m -------------------------------------------------------------------------------- /DuQuZiMu.m: -------------------------------------------------------------------------------- 1 | function ZiMu = DuQuZiMu(s10,s11,s12,s13,s14,s15,s16,s17,s18,s19,... 2 | s20,s21,s22,s23,s24,s25,s26,s27,s28,s29,... 3 | s30,s31,s32,s33) 4 | 5 | %1-5 ABCDE 6-10FGHJK 11-15 LMNPQ 16-20 RSTUV 21-24 WXYZ 6 | ZiMu(:,:,1) =imresize(im2bw(s10,graythresh(rgb2gray(s10))),[110 55],'bilinear'); 7 | ZiMu(:,:,2) =imresize(im2bw(s11,graythresh(rgb2gray(s11))),[110 55],'bilinear'); 8 | ZiMu(:,:,3) =imresize(im2bw(s12,graythresh(rgb2gray(s12))),[110 55],'bilinear'); 9 | ZiMu(:,:,4) =imresize(im2bw(s13,graythresh(rgb2gray(s13))),[110 55],'bilinear'); 10 | ZiMu(:,:,5) =imresize(im2bw(s14,graythresh(rgb2gray(s14))),[110 55],'bilinear'); 11 | ZiMu(:,:,6) =imresize(im2bw(s15,graythresh(rgb2gray(s15))),[110 55],'bilinear'); 12 | ZiMu(:,:,7) =imresize(im2bw(s16,graythresh(rgb2gray(s16))),[110 55],'bilinear'); 13 | ZiMu(:,:,8) =imresize(im2bw(s17,graythresh(rgb2gray(s17))),[110 55],'bilinear'); 14 | ZiMu(:,:,9) =imresize(im2bw(s18,graythresh(rgb2gray(s18))),[110 55],'bilinear'); 15 | ZiMu(:,:,10) =imresize(im2bw(s19,graythresh(rgb2gray(s19))),[110 55],'bilinear'); 16 | ZiMu(:,:,11) =imresize(im2bw(s20,graythresh(rgb2gray(s20))),[110 55],'bilinear'); 17 | ZiMu(:,:,12) =imresize(im2bw(s21,graythresh(rgb2gray(s21))),[110 55],'bilinear'); 18 | ZiMu(:,:,13) =imresize(im2bw(s22,graythresh(rgb2gray(s22))),[110 55],'bilinear'); 19 | ZiMu(:,:,14) =imresize(im2bw(s23,graythresh(rgb2gray(s23))),[110 55],'bilinear'); 20 | ZiMu(:,:,15) =imresize(im2bw(s24,graythresh(rgb2gray(s24))),[110 55],'bilinear'); 21 | ZiMu(:,:,16) =imresize(im2bw(s25,graythresh(rgb2gray(s25))),[110 55],'bilinear'); 22 | ZiMu(:,:,17) =imresize(im2bw(s26,graythresh(rgb2gray(s26))),[110 55],'bilinear'); 23 | ZiMu(:,:,18) =imresize(im2bw(s27,graythresh(rgb2gray(s27))),[110 55],'bilinear'); 24 | ZiMu(:,:,19) =imresize(im2bw(s28,graythresh(rgb2gray(s28))),[110 55],'bilinear'); 25 | ZiMu(:,:,20) =imresize(im2bw(s29,graythresh(rgb2gray(s29))),[110 55],'bilinear'); 26 | ZiMu(:,:,21) =imresize(im2bw(s30,graythresh(rgb2gray(s30))),[110 55],'bilinear'); 27 | ZiMu(:,:,22) =imresize(im2bw(s31,graythresh(rgb2gray(s31))),[110 55],'bilinear'); 28 | ZiMu(:,:,23) =imresize(im2bw(s32,graythresh(rgb2gray(s32))),[110 55],'bilinear'); 29 | ZiMu(:,:,24) =imresize(im2bw(s33,graythresh(rgb2gray(s33))),[110 55],'bilinear'); 30 | 31 | -------------------------------------------------------------------------------- /MuBanKu/0.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/0.BMP -------------------------------------------------------------------------------- /MuBanKu/1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/1.BMP -------------------------------------------------------------------------------- /MuBanKu/10.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/10.BMP -------------------------------------------------------------------------------- /MuBanKu/11.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/11.BMP -------------------------------------------------------------------------------- /MuBanKu/12.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/12.BMP -------------------------------------------------------------------------------- /MuBanKu/13.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/13.BMP -------------------------------------------------------------------------------- /MuBanKu/14.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/14.BMP -------------------------------------------------------------------------------- /MuBanKu/15.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/15.BMP -------------------------------------------------------------------------------- /MuBanKu/16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/16.BMP -------------------------------------------------------------------------------- /MuBanKu/17.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/17.BMP -------------------------------------------------------------------------------- /MuBanKu/18.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/18.BMP -------------------------------------------------------------------------------- /MuBanKu/19.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/19.BMP -------------------------------------------------------------------------------- /MuBanKu/2.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/2.BMP -------------------------------------------------------------------------------- /MuBanKu/20.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/20.BMP -------------------------------------------------------------------------------- /MuBanKu/21.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/21.BMP -------------------------------------------------------------------------------- /MuBanKu/22.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/22.BMP -------------------------------------------------------------------------------- /MuBanKu/23.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/23.BMP -------------------------------------------------------------------------------- /MuBanKu/24.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/24.BMP -------------------------------------------------------------------------------- /MuBanKu/25.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/25.BMP -------------------------------------------------------------------------------- /MuBanKu/26.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/26.BMP -------------------------------------------------------------------------------- /MuBanKu/27.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/27.BMP -------------------------------------------------------------------------------- /MuBanKu/28.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/28.BMP -------------------------------------------------------------------------------- /MuBanKu/29.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/29.BMP -------------------------------------------------------------------------------- /MuBanKu/3.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/3.BMP -------------------------------------------------------------------------------- /MuBanKu/30 - Copy.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/30 - Copy.BMP -------------------------------------------------------------------------------- /MuBanKu/30.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/30.BMP -------------------------------------------------------------------------------- /MuBanKu/31.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/31.BMP -------------------------------------------------------------------------------- /MuBanKu/32.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/32.BMP -------------------------------------------------------------------------------- /MuBanKu/33.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/33.BMP -------------------------------------------------------------------------------- /MuBanKu/4.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/4.BMP -------------------------------------------------------------------------------- /MuBanKu/5.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/5.BMP -------------------------------------------------------------------------------- /MuBanKu/6.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/6.BMP -------------------------------------------------------------------------------- /MuBanKu/7.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/7.BMP -------------------------------------------------------------------------------- /MuBanKu/8.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/8.BMP -------------------------------------------------------------------------------- /MuBanKu/9.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/9.BMP -------------------------------------------------------------------------------- /MuBanKu/beijing.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/beijing.BMP -------------------------------------------------------------------------------- /MuBanKu/chongqing.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/chongqing.bmp -------------------------------------------------------------------------------- /MuBanKu/guangdong.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/guangdong.BMP -------------------------------------------------------------------------------- /MuBanKu/guizhou.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/guizhou.bmp -------------------------------------------------------------------------------- /MuBanKu/jiangsu.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/jiangsu.BMP -------------------------------------------------------------------------------- /MuBanKu/shandong.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/shandong.bmp -------------------------------------------------------------------------------- /MuBanKu/sichuan.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/sichuan.bmp -------------------------------------------------------------------------------- /MuBanKu/zhejiang.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/MuBanKu/zhejiang.bmp -------------------------------------------------------------------------------- /QieGe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/QieGe.m -------------------------------------------------------------------------------- /ShiBieHanZi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ShiBieHanZi.m -------------------------------------------------------------------------------- /ShiBieSZZM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ShiBieSZZM.m -------------------------------------------------------------------------------- /ShiBieShuZi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ShiBieShuZi.m -------------------------------------------------------------------------------- /ShiBieZiMu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hangxyz/License-Plate-Recognition-by-MATLAB/f24cdb5486788148919355dddf0836dff7edcadc/ShiBieZiMu.m --------------------------------------------------------------------------------