[This is preliminary documentation and is subject to change.]

The algorithm normalizes brightness and increases contrast of the image

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvEqualizeHist(
	IntPtr src,
	IntPtr dst
)
Public Shared Sub cvEqualizeHist ( _
	src As IntPtr, _
	dst As IntPtr _
)
public:
static void cvEqualizeHist(
	IntPtr src, 
	IntPtr dst
)

Parameters

src
IntPtr
The input 8-bit single-channel image
dst
IntPtr
The output image of the same size and the same data type as src

See Also