Table of Contents

Class SimpleWB

Namespace
Emgu.CV.XPhoto
Assembly
Emgu.CV.dll

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

float

InputMin

Input image range minimum value

public float InputMin { get; set; }

Property Value

float

OutputMax

Output image range maximum value

public float OutputMax { get; set; }

Property Value

float

OutputMin

Output image range minimum value

public float OutputMin { get; set; }

Property Value

float

P

Percent of top/bottom values to ignore

public float P { get; set; }

Property Value

float

Methods

DisposeObject()

Release all the unmanaged memory associated with this white balancer

protected override void DisposeObject()