资源简介

利用摄像头,对输入的图像进行实时处理来实现对交通标志检测与识别

资源截图

代码片段和文件信息

% 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连接起来生成一个大矩阵

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

     文件      55950  2014-03-23 13:54  matlab\50.bmp

     文件        535  2008-05-08 21:26  matlab\appendimages.m

     文件       6135  2014-03-31 22:28  matlab\interface.asv

     文件      11503  2014-03-24 13:30  matlab\interface.fig

     文件       6170  2014-04-01 19:18  matlab\interface.m

     文件      13056  2007-06-11 14:23  matlab\mid2.bmp

     文件        191  2007-05-26 09:51  matlab\noise.m

     文件      14235  2014-03-17 21:04  matlab\picture\1.jpg

     文件      86463  2014-03-17 20:10  matlab\picture\85866479.jpg

    ..A.SH.     45056  2009-04-29 14:04  matlab\picture\Thumbs.db

     文件       4931  2014-03-24 12:36  matlab\Require.asv

     文件       4929  2014-03-31 22:09  matlab\Require.m

     文件       6534  2014-03-24 14:11  matlab\result_1.bmp

     文件       5094  2014-03-24 14:11  matlab\result_2.bmp

     文件       4578  2014-03-24 14:10  matlab\result_3.bmp

     文件       2486  2005-12-05 15:13  matlab\sift.m

     文件      94208  2005-11-21 08:59  matlab\siftWin32.exe

     文件      43614  2014-03-17 21:20  matlab\stop.bmp

    ..A.SH.     32768  2008-05-08 22:13  matlab\Thumbs.db

     文件       3236  2014-03-24 12:41  matlab\tmp.key

     文件       6170  2014-03-24 12:41  matlab\tmp.pgm

     文件       4168  2014-03-17 21:05  matlab\tt1.asv

     文件       4470  2014-04-09 19:31  matlab\tt1.m

     文件      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

     文件      65718  2014-03-17 21:14  matlab\不能右转No turn right.bmp

     文件       6816  2014-03-17 21:13  matlab\不能右转No turn right.jpg

     文件      30054  2014-03-17 15:47  matlab\不能左转No turn left.bmp

     文件      30054  2014-03-17 15:47  matlab\不许进入No Entry.bmp

............此处省略20个文件信息

评论

共有 条评论