Main Page   Modules   Class Hierarchy   Compound List   File List   Compound Members   Related Pages   Examples  

Contrast.h

00001 /* Copyright (c) 2001 S.E. Grigorescu */
00002 
00003 #ifndef CONTRAST_H
00004 #define CONTRAST_H
00005 
00006 #include "Image.h"
00007 
00010 template<class T> void Contrast(Image< T >& input, float min, float max, Image< T >& output);
00022 template<class T> void Contrast(Image< T >& input, float min, float max);
00034 template<class T> void Contrast(Image< T >& input, float min, float max, float lo, float hi, Image< T >& output);
00050 template<class T> void Contrast(Image< T >& input, float min, float max, float lo, float hi);
00066 #endif
00067