AutoImageEnhance2 performs complex operations on the image to simulate how humans see the world to make the image to have better contrast and colors.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void AutoImageEnhance2(
	int scaleCount,
	int scaleCurve,
	double variance,
	int scaleHigh,
	bool luminance
)
Public Sub AutoImageEnhance2 ( _
	scaleCount As Integer, _
	scaleCurve As Integer, _
	variance As Double, _
	scaleHigh As Integer, _
	luminance As Boolean _
)
public:
void AutoImageEnhance2(
	int scaleCount, 
	int scaleCurve, 
	double variance, 
	int scaleHigh, 
	bool luminance
)

Parameters

scaleCount
Int32
The algorithm is applied to different scales of the image. This parameter specifies the number of scales. Default 3.
scaleCurve
Int32
Specifies how build the size of each scale. Allowed values 0..2. Default 2.
variance
Double
The output variance. Default 1.8.
scaleHigh
Int32
Allowed values from 16 to 250. Default 200.
luminance
Boolean
If true the algorithm is applied only to luminance (luminosity) channel, so the algorithm doesn’t touch colors.

See Also