⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 im_scale.m

📁 The pattern recognition matlab toolbox
💻 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 + -