• 大小: 418KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: Matlab
  • 标签: MATLAB  

资源简介

交通灯的识别——主要是针对在自然场景中对交通灯的识别!通过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连接起来生成一个大矩阵

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

     文件      55950  2014-03-23 13:54  交通灯识别\50.bmp

     文件        535  2008-05-08 21:26  交通灯识别\appendimages.m

     文件       6135  2014-03-31 22:28  交通灯识别\interface.asv

     文件      11503  2014-03-24 13:30  交通灯识别\interface.fig

     文件       6170  2014-04-01 19:18  交通灯识别\interface.m

     文件      13056  2007-06-11 14:23  交通灯识别\mid2.bmp

     文件        191  2007-05-26 09:51  交通灯识别\noise.m

     文件       4931  2014-03-24 12:36  交通灯识别\Require.asv

     文件       4929  2014-03-31 22:09  交通灯识别\Require.m

     文件       6534  2014-03-24 14:11  交通灯识别\result_1.bmp

     文件       5094  2014-03-24 14:11  交通灯识别\result_2.bmp

     文件       4578  2014-03-24 14:10  交通灯识别\result_3.bmp

     文件       2486  2005-12-05 15:13  交通灯识别\sift.m

     文件      94208  2005-11-21 08:59  交通灯识别\siftWin32.exe

     文件      43614  2014-03-17 21:20  交通灯识别\stop.bmp

    ..A.SH.     32768  2008-05-08 22:13  交通灯识别\Thumbs.db

     文件       3236  2014-03-24 12:41  交通灯识别\tmp.key

     文件       6170  2014-03-24 12:41  交通灯识别\tmp.pgm

     文件       4168  2014-03-17 21:06  交通灯识别\tt1.asv

     文件       4470  2014-04-09 19:31  交通灯识别\tt1.m

     文件      30354  2007-06-01 12:04  交通灯识别\youguai.bmp

     文件      17946  2007-05-31 22:41  交通灯识别\zuoguai1.bmp

     文件      14742  2007-05-31 22:42  交通灯识别\zuoguai_10.bmp

     文件      65718  2014-03-17 21:14  交通灯识别\不能右转No turn right.bmp

     文件       6816  2014-03-17 21:13  交通灯识别\不能右转No turn right.jpg

     文件      30054  2014-03-17 15:47  交通灯识别\不能左转No turn left.bmp

     文件      30054  2014-03-17 15:47  交通灯识别\不许进入No Entry.bmp

     文件      30054  2014-03-17 15:49  交通灯识别\双行two way.bmp

     文件         34  2014-03-23 14:09  交通灯识别\新建文本文档.txt

     文件      30054  2014-03-17 15:48  交通灯识别\红绿灯traffic light.bmp

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

评论

共有 条评论