ECG-Kit 1.0
(1,044 bytes)
%IM_NORM Fixed mapping for normalizing images on mean and variance
%
% B = IM_NORM(A)
% B = A*IM_NORM
%
% INPUT
% A Dataset or datafile
%
% OUTPUT
% B Dataset or datafile
%
% DESCRIPTION
% The objects stored as images in the dataset or datafile A are normalised
% w.r.t. their mean (0) and variance (1).
%
% SEE ALSO (<a href="http://37steps.com/prtools">PRTools Guide</a>)
% MAPPINGS, DATASETS, DATAFILES, IM2OBJ, DATA2IM
% Copyright: R.P.W. Duin, r.p.w.duin@37steps.com
% Faculty EWI, Delft University of Technology
% P.O. Box 5031, 2600 GA Delft, The Netherlands
function b = im_norm(a)
if nargin < 1
a = [];
end
if isempty(a)
b = prmapping(mfilename,'fixed');
b = setname(b,'image normalisation');
elseif isa(a,'prdataset') % allows datafiles too
isobjim(a);
b = filtim(a,mfilename);
elseif isa(a,'double') | isa(a,'dip_image') % here we have a single image
b = double(a);
u = mean(b(:));
v = var(b(:));
b = (b-u)./sqrt(v);
else
error('Datatype not supported')
end