image_scale.m
来自「fm_gui_v2图像跟踪,可稳定跟踪目标,用于MATLAB仿真」· 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 + -
显示快捷键?