?? resampleimg.m
字號(hào):
% 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);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -