資源簡介
路標識別的matlab實現,實現了交通標志的自動識別。
代碼片段和文件信息
%?im?=?appendimages(image1?image2)
%
%?Return?a?new?image?that?appends?the?two?images?side-by-side.
function?im?=?appendimages(image1?image2)
%?Select?the?image?with?the?fewest?rows?and?fill?in?enough?empty?rows
%???to?make?it?the?same?height?as?the?other?image.
rows1?=?size(image11);?%返回image1的行數
rows2?=?size(image21);?%返回image2的行數?
if?(rows1??????image1(rows21)?=?0;
else
?????image2(rows11)?=?0;
end
%?Now?append?both?images?side-by-side.
im?=?[image1?image2];?%將image1與image2連接起來生成一個大矩陣
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????23094??2007-05-31?23:07??matlab路標識別\50.bmp
?????文件????????535??2008-05-08?21:26??matlab路標識別\appendimages.m
?????文件??????27176??2007-06-01?09:24??matlab路標識別\interface.fig
?????文件???????3753??2007-06-08?09:36??matlab路標識別\interface.m
?????文件??????13056??2007-06-11?14:23??matlab路標識別\mid2.bmp
?????文件??????94146??2007-05-31?21:09??matlab路標識別\picture\10.jpg
?????文件??????77609??2007-05-31?21:13??matlab路標識別\picture\11.jpg
?????文件??????59140??2007-05-31?22:22??matlab路標識別\picture\17.jpg
?????文件??????71068??2007-05-31?22:25??matlab路標識別\picture\18.jpg
?????文件?????112739??2007-06-11?13:45??matlab路標識別\picture\19.jpg
?????文件?????120281??2007-06-11?13:47??matlab路標識別\picture\20.jpg
?????文件?????100855??2007-05-31?20:58??matlab路標識別\picture\4.jpg
?????文件??????82831??2007-05-31?21:00??matlab路標識別\picture\5.jpg
?????文件??????94289??2007-05-31?21:07??matlab路標識別\picture\9.jpg
????..A.SH.?????45056??2009-04-29?14:04??matlab路標識別\picture\Thumbs.db
?????文件??????27254??2007-06-12?01:56??matlab路標識別\result_1.bmp
?????文件??????17526??2007-06-12?01:55??matlab路標識別\result_2.bmp
?????文件??????11586??2007-06-12?01:55??matlab路標識別\result_3.bmp
?????文件??????94208??2005-11-21?08:59??matlab路標識別\siftWin32.exe
????..A.SH.?????32768??2008-05-08?22:13??matlab路標識別\Thumbs.db
?????文件??????30354??2007-06-01?12:04??matlab路標識別\youguai.bmp
?????文件??????17946??2007-05-31?22:41??matlab路標識別\zuoguai1.bmp
?????文件??????14742??2007-05-31?22:42??matlab路標識別\zuoguai_10.bmp
?????文件???????3550??2007-06-12?01:56??matlab路標識別\匹配\tt1.m
?????文件????????191??2007-05-26?09:51??matlab路標識別\去除噪音\noise.m
?????文件???????2486??2005-12-05?15:13??matlab路標識別\獲得特征向量\sift.m
?????文件??????16172??2007-06-11?14:23??matlab路標識別\限速.bmp
?????文件???????4263??2008-05-07?23:20??matlab路標識別\預處理與提取\Require.asv
?????文件???????4441??2008-05-08?09:42??matlab路標識別\預處理與提取\Require.m
?????目錄??????????0??2009-04-29?14:03??matlab路標識別\picture
............此處省略8個文件信息
評論
共有 條評論