istretch.m

来自「Machine Vision Toolbox for MATLAB (Relea」· M 代码 · 共 31 行

M
31
字号
%ISTRETCH	Image linear normalization%%	g = istretch(image)%	g = istretch(image, newmax)%%	Return a normalized image in which all pixels lie in the range%	0 to 1, or 0 to newmax.%%%	Copyright (c) Peter Corke, 1999  Machine Vision Toolbox for Matlab% $Header: /home/autom/pic/cvsroot/image-toolbox/istretch.m,v 1.2 2005/10/23 11:17:18 pic Exp $% $Log: istretch.m,v $% Revision 1.2  2005/10/23 11:17:18  pic% Handle multi-dimensional images.%% Revision 1.1.1.1  2002/05/26 10:50:23  pic% initial import%function zs = istretch(z, newmax)	if nargin == 1,		newmax = 1;	end	mn = min(z(:));	mx = max(z(:));	zs = (z-mn)/(mx-mn)*newmax;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?