资源简介
matlab仿真的图像序列的柱面全景拼接算法,其中有柱面投影程序可对其它投影公式有一定的启示。
代码片段和文件信息
function [T1coor_shift02]=coortransf(T0fcoor_shift)
%%%%图像坐标系到柱面坐标的转换
%对输入图像序列T0按焦距f进行变换
coor_shift02=coor_shift;%%%%第一维(行值)不变,第二维(列)在映射后更新
[HWrN]=size(T0);
w2f=W/2/f;
h2=H/2;
constant2=f*atan(W/(2*f));
constant1=h2;
for y=1:W %%%%%% 列
angle=atan(y/f-w2f);%%%%atan((y-W/2)/f);
y1=uint16(f*angle+constant2);
if y1==0
y1=1;
end
for x=1:H %%%%%%%%%%%% 行
x1=uint16((x-h2)*cos(angle)+constant1);
if x1==0
x1=1;
end
if r==3 %%%%%%%%%%%%%彩色图像
for n=1:N %%%%%%%%%
if (y==coor_shift(n2))
coor_shift02(n2)=y1;
end %%%对应偏移量
T1(x1y1:n)=T0(xy:n);%%%%点的映射
end
elseif r==1
% T1(x1y1)=T0(xy);
end
end
end
[hwaN]=size(T1);
for i=1:60%%%边缘没有映射点的地方填白色
for j=1:w
if (T1(ij::)==0)
T1(ij::)=255;
end
if (T1(h-ij::)==0)
T1(ij::)=255;
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-07-05 20:56 Panorama stitching algorithm\
文件 1125 2014-07-03 11:47 Panorama stitching algorithm\coortransf.m
文件 1481 2006-10-24 15:59 Panorama stitching algorithm\cylinpano2images.m
文件 331 2006-06-27 16:55 Panorama stitching algorithm\imagefusion02.m
文件 672 2006-11-14 16:24 Panorama stitching algorithm\inorm.m
文件 2149 2014-07-03 11:27 Panorama stitching algorithm\main.m
文件 619 2006-11-14 16:56 Panorama stitching algorithm\medfilt.m
文件 1065 2006-10-23 21:42 Panorama stitching algorithm\mosaic.m
文件 660 2006-10-24 15:22 Panorama stitching algorithm\multi_resolution.m
文件 1537 2006-06-30 17:48 Panorama stitching algorithm\phase_correlation.m
文件 2612 2006-10-24 19:53 Panorama stitching algorithm\poc_2pow.m
相关资源
- matlab计算复杂网络中节点的紧密中心
- 欧拉运动放大视频和代码
- matlab神经网络43个案例分析的代码及数
- matlab混凝土(Concrete )骨料(Bone )随
- Direct-driven-PMSG
- 稀疏恢复算法 focuss
- 蒙特卡洛模拟光子在组织中的运动m
- ERADistNataf MATLAB
- bp神经网络的adp小程序
- 主动声纳
- Particle Swarm Optimization(PSO) Algorithm
- MATLAB绘制伯德图
- 椭圆拟合matlab
- knn算法matlab实现
- 基本蛙跳程序 matlab
- 用matlab编写的BP神经网络用于预测房价
- 针对三维点云的Mean Shift聚类算法(
- 复杂网络特性计算的matlab代码
- 基于MATLAB的灰色预测模型的实现
- A星算法寻路matlab程序代码
- 基于Matlab轮廓匹配的物体识别系统的
- DEA的Matlab程序,绝对可运行!!
- matlab kmeans聚类 代码和带图
- matlab将dat数据转换成jpg图像并保存
- matlab程序下的决策树与随机森林分类
- 遗传算法优化神经网络matlab源码
- 遗传算法解决背包问题 MATLAB可运行代
- 马尔科夫链蒙特卡洛MCMC仿真带MATLAB代
- SVM light 工具箱 包含和说明文件 包含
- 机器人手眼标定-Matlab程序高精度
评论
共有 条评论