Class SimpleWB
A simple white balance algorithm that works by independently stretching each of the input image channels to the specified range. For increased robustness it ignores the top and bottom p% of pixel values.
public class SimpleWB : WhiteBalancer, IDisposable
- Inheritance
-
SimpleWB
- Implements
- Inherited Members
Constructors
SimpleWB()
Creates a simple white balancer
public SimpleWB()
Properties
InputMax
Input image range maximum value
public float InputMax { get; set; }
Property Value
InputMin
Input image range minimum value
public float InputMin { get; set; }
Property Value
OutputMax
Output image range maximum value
public float OutputMax { get; set; }
Property Value
OutputMin
Output image range minimum value
public float OutputMin { get; set; }
Property Value
P
Percent of top/bottom values to ignore
public float P { get; set; }
Property Value
Methods
DisposeObject()
Release all the unmanaged memory associated with this white balancer
protected override void DisposeObject()