resampleimg.m

来自「a matlab code on duper resolution」· M 代码 · 共 18 行

M
18
字号
% img=ResampleImg(img, roi, d) 
%
% Resamples the image at the given ROI and displacement
function img=ResampleImg(img, roi, d)

% Compute coordinates for resampling
[X,Y]=meshgrid(roi(2):roi(4), roi(1):roi(3));

% Add affine displacement to coordinates
D=d*[X(:)';Y(:)' ; ones(1,length(X(:)))];

% Update coorindates with displacement
X = X-reshape(D(1,:), size(X));
Y = Y-reshape(D(2,:), size(X));

% Resample the image
img=interp2(img, X, Y);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?