image_scale.m
来自「此为基于图像配准的傅立叶变换源代码」· M 代码 · 共 11 行
M
11 行
function output = image_scale(input,lower,upper)% USAGE : output = image_scale(input,lower,upper)%% input = image to be scaled% lower,upper = new limits to impose on image% output = newly-scaled image%% Adam Wilmer, 25-4-02iu = max(max(input)); il = min(min(input));output = ((upper-lower)*((input-il)/(iu-il)))+lower;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?