ColorContrast
contrast_enhancement.h
1 /* contrast_enhancement.h */
2 
3 #ifndef CONTRAST_ENHANCEMENT_H
4 #define CONTRAST_ENHANCEMENT_H
5 
6 #include <Image.h>
7 
8 void contrast_enhancement(Image* Im0,double *poly,
9  int type_kernel, double sigma,
10  double alpha, double beta, int verbose);
11 
12 #endif
13 
void contrast_enhancement(Image *Im0, double *poly, int type_kernel, double sigma, double alpha, double beta, int verbose)
Implements the contrast_enhancement algorithm for color images.
Definition: contrast_enhancement.cpp:138
Definition: Image.h:36