资源简介
基于薄板样条的图像配准MATLAB代码,已测试可以正常运行
代码片段和文件信息
function out = idwMvInterp(imgw map maxhw p )
% Description:
% Fill holes using Inverse Distance Weighting interpolation
%
% Inputs:
% imgw - input image
% map - Map of the canvas with 0 indicating holes and 1 indicating pixel
% maxhw - Radius of inverse weighted interpolation
% p - power for inverse weighted interpolation
%
% Output:
% out - interpolated image
%
% Author: Fitzgerald J Archibald
% Date: 23-Apr-09
outH = size(imgw1);
outW = size(imgw2);
out = imgw;
[yi_arr xi_arr] = find(map==0); % Find locations needing fill
if isempty(yi_arr) == false
color = size(imgw3);
for ix = 1:length(yi_arr)
xi = xi_arr(ix);
yi = yi_arr(ix);
% Find min window which has non-hole neighbors
yixL=max(yi-maxhw1);
yixU=min(yi+maxhwoutH);
xixL=max(xi-maxhw1);
xixU=min(xi+maxhwoutW);
% use inverse distance weighting filter for filling
mapw = map(yixL:yixUxixL:xixU);
if isempty(find(mapw 1)) == false
wk = compWk(mapw xi-xixL+1 yi-yixL+1 p); % compute weights for interpolation
for colIx = 1:color
out(yixicolIx) = idw(imgw(yixL:yixU xixL:xixU colIx) mapw wk); % interpolation
end
end
end
end
return;
% compute wk
function wk = compWk(map cx cy p)
[hw] = size(map);
[xy] = meshgrid(1:h1:w);
y=(y-cx).^2;
x=(x-cy).^2;
d2=x+y; % square of distance
wk = 1./(d2‘.^(p/2));
return;
% Inverse distance weighting
function out = idw(in map wk)
num=sum(double(in(find(map))).*wk(find(map))); % weight the available pixel values among the neighbors
den=sum(wk(find(map))); % sum of contributing weights within radius r
out = num / den;
return
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-06-27 11:22 tpsWarp\
目录 0 2015-06-27 10:54 tpsWarp\data\
文件 110614 2014-02-12 12:48 tpsWarp\data\0505_02.jpg
文件 2083861 2014-02-12 12:48 tpsWarp\data\MOV03798.MPG
目录 0 2015-06-27 10:54 tpsWarp\doc\
文件 316851 2014-02-12 12:48 tpsWarp\doc\readme.pdf
文件 1800 2014-02-12 12:48 tpsWarp\idwMvInterp.m
文件 2199 2014-02-12 12:48 tpsWarp\interp2d.m
文件 2185 2014-02-12 12:48 tpsWarp\map.mat
文件 1400 2014-02-12 12:48 tpsWarp\nearestInterp.m
文件 399 2014-02-12 12:48 tpsWarp\tpsDemoLandmark.mat
文件 3893 2015-06-29 09:03 tpsWarp\tpswarp.m
文件 2245 2015-06-27 11:02 tpsWarp\tpsWarpDemo.m
- 上一篇:64QAM系统性能的分析
- 下一篇:双边滤波 图像增强
相关资源
- 64QAM系统性能的分析
- [免资源分]隐马尔可夫模型关于图像处
- 卡尔曼滤波理论与实践MATLAB版第四版
- 应用MATLAB的仪器仪表中的数字定位及
- 双闭环PWM逆变器的MATLAB仿真
- 基于RTW的语者识别matlab源程序
- 基于FPGA技术的FIR数字滤波器的设计
- SIFT算子MatLab实现源码及帮助文档
- Matlab+OpenCV相机标定详细步骤
- 压缩感知经典文章附程序
- MATLAB串口操作官方教程2014版v1.2
- 贝叶斯图像处理matlab程序
- meanshift图像平滑matlab实现
- Matlab GPS Toolbox
- 基于MATLAB的指纹识别系统设计
- MATLAB编程(第二版)
- 基于MATLAB的图像处理系统的设计与实
- Retinex理论的matlab实现和雾天图像处理
- MATLAB在语音信号分析和合成中的应
- 基于边缘直方图的图像检索
- Matlab-An Introduction with applications习题答
- 各种最小二乘法汇总(算例及MATLAB程
- matlab交通标志识别.zip
- 最优化方法及其Matlab程序设计 马昌凤
- 水平集level set、李纯明博士DRLSE改进方
- matlab表情识别
- 维纳滤波和盲去卷积复原图像,matl
- windows下caffe的matlab接口
- 贝叶斯分类器的matlab实现及案例
- blinddeconv盲卷积去模糊
评论
共有 条评论