[Wavelet-commit] Wavelet/WImage Image.hh,1.12,1.13
Status: Beta
Brought to you by:
herbert
From: Herbert M. D. <he...@us...> - 2005-07-13 13:56:09
|
Update of /cvsroot/wavelet/Wavelet/WImage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20244/WImage Modified Files: Image.hh Log Message: Fixed Image::gammaCorrection() for more than 256 color steps. Index: Image.hh =================================================================== RCS file: /cvsroot/wavelet/Wavelet/WImage/Image.hh,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Image.hh 13 Jul 2005 13:15:06 -0000 1.12 --- Image.hh 13 Jul 2005 13:55:53 -0000 1.13 *************** *** 194,202 **** /** Perform a histogram equalisation. ! * The operation performs a floating-point to int quantisation and then ! * sets the color range automatically. For images with all-positive ! * values, the color range 0..255 is assumed. Else other values can ! * be specified for example Haar LL Level 1 would be 0..1023 and Haar non ! * LL Level 1 would be -512..511. * Code provided by Johan Ehlers. * @waring --- 194,202 ---- /** Perform a histogram equalisation. ! * The operation performs a floating-point to int quantisation and uses ! * a given color range if 0..255 is not desired. Explicit values for the ! * color range can be necessary e.g. for Wavelet-decomposed images; for ! * example for Haar LL Level 1 a good choice would be 0..1023 and -512..511 ! * for Haar non LL Level 1. * Code provided by Johan Ehlers. * @waring |