资源简介
MATLAB源码,SIFT图像拼接特征点匹配
代码片段和文件信息
% 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);
rows2 = size(image21);
if (rows1 < rows2)
image1(rows21) = 0;
else
image2(rows11) = 0;
end
% Now append both images side-by-side.
im = [image1 image2];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2005-07-08 04:54 siftDemoV4\
文件 1920 2005-07-08 04:54 siftDemoV4\defs.h
文件 4876 2005-07-08 04:54 siftDemoV4\match.c
文件 631 2005-07-08 04:54 siftDemoV4\Makefile
文件 7952 2005-07-08 04:54 siftDemoV4\README
文件 97697 2005-07-08 04:54 siftDemoV4\book.pgm
文件 196623 2005-07-08 04:54 siftDemoV4\scene.pgm
文件 1940 2005-07-08 04:54 siftDemoV4\match.m
文件 461 2005-07-08 04:54 siftDemoV4\appendimages.m
文件 1699 2005-07-08 04:54 siftDemoV4\showkeys.m
文件 2494 2005-07-08 04:54 siftDemoV4\sift.m
文件 7493 2005-07-08 04:54 siftDemoV4\util.c
文件 45070 2005-07-08 04:54 siftDemoV4\sift
文件 1055 2005-07-08 04:54 siftDemoV4\LICENSE
文件 46433 2005-07-08 04:54 siftDemoV4\basmati.pgm
文件 72310 2005-07-08 04:54 siftDemoV4\box.pgm
文件 94208 2005-07-08 04:54 siftDemoV4\siftWin32.exe
- 上一篇:MATLAB SIMUli
nk 的仿真算法 - 下一篇:控制系统设计实验软件开发
相关资源
- matlab实现sift提取特征点
- sift+ransac图像拼接matlab代码
- 基于SIFT特征的图像配准之仿真图像
- 基于SIFT特征的图像配准MATLAB代码
- 尺度空间sift算法
- 基于sift算法的图像拼接
- SIFT PCA资料和代码
- image-forgery-with-siftand-ransac
- SIFT算法的图像拼接
- SIFT特征匹配matlab版.rar
- SIFT+RANSAC图像配准matlab代码,投影变换
- 基于SIFT和SURF的遥感图像配准matlab代码
- SIFT算法MATLAB源码
- matlab的SIFT算法程序
- sift 图像拼接
- sift幅图像拼接的程序
- matlab实现多幅图像拼接
- sift sift 特征提取算法matlab实现
- SIFT2844912
- docs
- SIFT2830309
- sift sift图像匹配的纯matlab代码
- PG_BOW_DEMO 图像的特征用到了Dense Sift
- SIFT 图像检索中经典的SIFT方法matlab实
- sift----matlab sift算法的完整matlab程序
- demo_ASIFT_Win ASIFT图像特征提取源代码
- bow-sift 实现图片的sift特征的提取
- plot 使用sift+RANSAC完成两幅图像的特征
- 3D_MATCHing_SIFT matlab环境下的三维点云配
- computer_vision_work 自动图像拼接
评论
共有 条评论