资源简介

路标识别的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 < rows2)
     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个文件信息

评论

共有 条评论