📄 resampleimg.m
字号:
% 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))-d(1), (roi(1):roi(3))-d(2));
% Resample the image
img=interp2(img, X, Y);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -