Luminance and saturation linear correction.
Namespace:
AForge.Imaging.FiltersAssembly: AForge.Imaging (in AForge.Imaging.dll) Version: 2.2.3.0 (2.2.3.0)
Syntax
| C# |
|---|
public class HSLLinear : BaseInPlacePartialFilter |
Remarks
The filter operates in HSL color space and provides with the facility of luminance and saturation linear correction - mapping specified channels' input ranges to specified output ranges.
The filter accepts 24 and 32 bpp color images for processing.
Sample usage:
// create filter HSLLinear filter = new HSLLinear( ); // configure the filter filter.InLuminance = new Range( 0, 0.85f ); filter.OutSaturation = new Range( 0.25f, 1 ); // apply the filter filter.ApplyInPlace( image );
Initial image:
Result image:
Inheritance Hierarchy
System..::.Object
AForge.Imaging.Filters..::.BaseInPlacePartialFilter
AForge.Imaging.Filters..::.HSLLinear
AForge.Imaging.Filters..::.BaseInPlacePartialFilter
AForge.Imaging.Filters..::.HSLLinear