enhance - Methods to Enhance an Image
unsigned int ContrastImage( Image *image, const unsigned int sharpen );
unsigned int EqualizeImage( Image *image );
unsigned int GammaImage( Image *image, const char *gamma );
unsigned int LevelImage( Image *image, const char *level );
unsigned int ModulateImage( Image *image, const char *modulate );
unsigned int NegateImage( Image *image, const unsigned int grayscale );
unsigned int NormalizeImage( Image *image );
ContrastImage() enhances the intensity differences between the lighter and darker elements of the image. Set sharpen to a value other than 0 to increase the image contrast otherwise the contrast is reduced.
The format of the ContrastImage method is:
unsigned int ContrastImage ( Image *image, const unsigned int sharpen );
A description of each parameter follows:
EqualizeImage() applies a histogram equalization to the image.
The format of the EqualizeImage method is:
unsigned int EqualizeImage ( Image *image );
A description of each parameter follows:
Use GammaImage() to gamma-correct an image. The same image viewed on different devices will have perceptual differences in the way the image's intensities are represented on the screen. Specify individual gamma levels for the red, green, and blue channels, or adjust all three with the gamma parameter. Values typically range from 0.8 to 2.3.
You can also reduce the influence of a particular channel with a gamma value of 0.
The format of the GammaImage method is:
unsigned int GammaImage ( Image *image, const char *gamma );
A description of each parameter follows:
LevelImage() adjusts the levels of an image given these points: black, mid, and white.
The format of the LevelImage method is:
unsigned int LevelImage ( Image *image, const char *level );
A description of each parameter follows:
ModulateImage() lets you control the brightness, saturation, and hue of an image. Modulate represents the brightness, saturation, and hue as one parameter ( e.g. 90, 150, 100 ) .
The format of the ModulateImage method is:
unsigned int ModulateImage ( Image *image, const char *modulate );
A description of each parameter follows:
Method NegateImage negates the colors in the reference image. The Grayscale option means that only grayscale values within the image are negated.
The format of the NegateImage method is:
unsigned int NegateImage ( Image *image, const unsigned int grayscale );
A description of each parameter follows:
The NormalizeImage() method enhances the contrast of a color image by adjusting the pixels color to span the entire range of colors available.
The format of the NormalizeImage method is:
unsigned int NormalizeImage ( Image *image );
A description of each parameter follows: