view util/ksvd utils/imnormalize.m @ 221:c1efdd5d6250 luisf_dev

added ompbox_fast as sparse approximation solver, which calls the functions in ompbox using the fastest implementation
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Wed, 11 Apr 2012 16:13:08 +0100
parents c3eca463202d
children
line wrap: on
line source
function y = imnormalize(x)
%IMNORMALIZE Normalize image values.
%  Y = IMNORMALIZE(X) linearly transforms the intensity values of the image
%  X to tightly cover the range [0,1]. If X has more than one channel, the
%  channels are handled as one and normalized using the same transform.


%  Ron Rubinstein
%  Computer Science Department
%  Technion, Haifa 32000 Israel
%  ronrubin@cs
%
%  May 2004


maxval = max(x(:));
minval = min(x(:));

y = (x-minval) / (maxval-minval);