]> Creatis software - CreaPhase.git/blob - octave_packages/image-1.0.15/histeq.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / image-1.0.15 / histeq.m
1 ## Copyright (C) 2000  Kai Habel
2 ##
3 ## This program is free software; you can redistribute it and/or modify
4 ## it under the terms of the GNU General Public License as published by
5 ## the Free Software Foundation; either version 2 of the License, or
6 ## (at your option) any later version.
7 ##
8 ## This program is distributed in the hope that it will be useful,
9 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 ## GNU General Public License for more details.
12 ##
13 ## You should have received a copy of the GNU General Public License
14 ## along with this program; If not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Function File} @var{J} = histeq (@var{I}, @var{n})
18 ## Histogram equalization of a gray-scale image. The histogram contains
19 ## @var{n} bins, which defaults to 64.
20 ##
21 ## @var{I}: Image in double format, with values from 0.0 to 1.0
22 ##
23 ## @var{J}: Returned image, in double format as well
24 ## @seealso{imhist}
25 ## @end deftypefn
26
27 ## Author:      Kai Habel <kai.habel@gmx.de>
28 ## Date:        08. August 2000
29 ## Modified-by: Jonas Wagner <j.b.w@gmx.ch>
30 ## Date:        11. February 2008
31
32 function J = histeq (I, n)
33   if (nargin == 0)
34     print_usage();
35   elseif (nargin == 1)
36     n = 64;
37   endif
38
39   [r,c] = size(I); 
40   I = mat2gray(I);
41   [X,map] = gray2ind(I, n);
42   [nn,xx] = imhist(I, n);
43   Icdf = 1 / prod(size(I)) * cumsum(nn);
44   J = reshape(Icdf(X),r,c);
45   plot(Icdf,'b');
46   legend( 'Image Cumulative Density Function');
47 endfunction