?? im_scale.m
字號:
%IM_SCALE Scale all binary images in a datafile to a giving fraction of pixels 'on'%% B = IM_SCALE(A,P)% B = A*IM_SCALE([],P)%% B is a zoomed in / out version of A such that about a fraction% P of the image pixels is 'on' (1).%% SEE ALSO% DATASETS, DATAFILES, IM_BOX, IM_CENTER% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org% Faculty EWI, Delft University of Technology% P.O. Box 5031, 2600 GA Delft, The Netherlandsfunction b = im_scale(a,p) prtrace(mfilename); if nargin < 2 | isempty(p), p = 0.5; end if nargin < 1 | isempty(a) b = mapping(mfilename,'fixed',{p}); b = setname(b,'Image bounding box'); elseif isdataset(a) error('Command cannot be used for datasets as it may change image size') elseif isdatafile(a) isobjim(a); b = filtim(a,mfilename,{p}); b = setfeatsize(b,getfeatsize(a)); elseif isa(a,'double') | isa(a,'dip_image') % here we have a single image sca = sqrt(p/mean(a(:))); sa = size(a); c = imresize(double(a),round(sca*sa),'nearest'); sc = size(c); d = abs(floor((sc - sa)/2)); if sca < 1 b = zeros(size(a)); b(d(1)+1:d(1)+sc(1),d(2)+1:d(2)+sc(2)) = c; else b = c(d(1)+1:d(1)+sa(1),d(2)+1:d(2)+sa(2)); end endreturn
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -