| Cv2EqualizeHist Method |
normalizes the grayscale image brightness and contrast by normalizing its histogram
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void EqualizeHist(
InputArray src,
OutputArray dst
)
Public Shared Sub EqualizeHist (
src As InputArray,
dst As OutputArray
)
public:
static void EqualizeHist(
InputArray^ src,
OutputArray^ dst
)
static member EqualizeHist :
src : InputArray *
dst : OutputArray -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
The source 8-bit single channel image - dst
- Type: OpenCvSharpOutputArray
The destination image; will have the same size and the same type as src
See Also