@XmlElement(value="ContrastEnhancement") public interface ContrastEnhancement
In the case of a color image, the relative grayscale brightness of a pixel color is used. ?Normalize? means to stretch the contrast so that the dimmest color is stretched to black and the brightest color is stretched to white, with all colors in between stretched out linearly. ?Histogram? means to stretch the contrast based on a histogram of how many colors are at each brightness level on input, with the goal of producing equal number of pixels in the image at each brightness level on output. This has the effect of revealing many subtle ground features. A ?GammaValue? tells how much to brighten (value greater than 1.0) or dim (value less than 1.0) an image. The default GammaValue is 1.0 (no change). If none of Normalize, Histogram, or GammaValue are selected in a ContrastEnhancement, then no enhancement is performed.
Modifier and Type | Method and Description |
---|---|
Object |
accept(StyleVisitor visitor,
Object extraData)
calls the visit method of a StyleVisitor
|
Expression |
getGammaValue()
A "GammaValue" tells how much to brighten (values greater than 1.0) or dim (values less than
1.0) an image.
|
ContrastMethod |
getMethod()
We use a codeList to enable more enchancement type possibilities.
|
@XmlElement(value="Normalize,Histogram,Logarithmic,Exponential") ContrastMethod getMethod()
@XmlElement(value="GammaValue") Expression getGammaValue()
@Extension Object accept(StyleVisitor visitor, Object extraData)
visitor
- the style visitorCopyright © 1996–2019 Geotools. All rights reserved.