mfocusint.m
来自「matlab code for image fusion used by can」· M 代码 · 共 26 行
M
26 行
function mfocusint(bsize,thres)
%
%mfocusint.m, v 1.0 2002/05/09 17:52:40
%===========================================================================
% Eduardo Fernandez Canga - University of Bath
%
% Copyright (c) 2002
%===========================================================================
%
% mfocusint(bsize,thres)
%
% Function called by 'mfocus'
%
%===========================================================================
if nargin<2, thres=1;end
if nargin<1, bsize=8;end
prompt = { ' Enter block size: ', ' Enter Threshold: '};
title = ' Spatial Frequency Values ';
lines = 1;
def = {num2str(bsize),num2str(thres)};
answer = inputdlg(prompt,title,lines,def,'on');
assignin('caller','block',str2num(answer{1}) );
assignin('caller','threshold',str2num(answer{2}) );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?