资源简介
路标识别的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个文件信息
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- popular-UCI-datasets 一些非常有用的数据
- GAPSO 这个算法是遗传算法和粒子群优
- synchronization 利用matlab仿真实现载波的
- Gabor Gabor小波变换的matlab实现
- 4 matlab区域填充的具体算法及演示
- MATLAB_image_process_with_PDE 运用偏微分方
- gabijiao 该程序通过实例(函数)
- SIFT2844912
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- EELM
- barcode 基于图像的条形码识别程序(识
-
myaudiopla
yer 使用Matlab GUI实现的音频 - B-spline-surface 在MATLAB-2008a环境下编写的
- NURBS-surface 在MATLAB-2008a环境下编写的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- wavplay 基于matlab GUI界面的播放器
- allfns 是由牛津大学VGG开发的三维重建
- spectrogram_fft
- adaboost 基于adaboost的人脸识别程序
- 2 2课程报告要求:按照讲课内容
- gps GPS信号的捕获、处理程序
- fuzzynetme 模糊神经网络的MATLAB程序
- naive_bayes_numeric 利用matlab实现的朴素贝
- MFandMPF 计算肌电信号积分肌电值
- BM3D BM3D去噪算法的实现和相关文档
- BarrelDistortion 两个matlab程序
- Kalman 用卡尔曼滤波跟踪目标实例
- WSN-matlab-simulation
评论
共有 条评论