C# Class OpenCvSharp.CLAHE

Contrast Limited Adaptive Histogram Equalization
Inheritance: Algorithm
ファイルを表示 Open project: shimat/opencvsharp

Public Methods

Method Description
Apply ( InputArray src, OutputArray dst ) : void

CollectGarbage ( ) : void

Create ( double clipLimit = 40.0, Size tileGridSize = null ) : CLAHE

Creates a predefined CLAHE object

GetClipLimit ( ) : double

GetTilesGridSize ( ) : Size

SetClipLimit ( double clipLimit ) : void

SetTilesGridSize ( Size tileGridSize ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases the resources

Private Methods

Method Description
CLAHE ( IntPtr p ) : System

Method Details

Apply() public method

public Apply ( InputArray src, OutputArray dst ) : void
src InputArray
dst OutputArray
return void

CollectGarbage() public method

public CollectGarbage ( ) : void
return void

Create() public static method

Creates a predefined CLAHE object
public static Create ( double clipLimit = 40.0, Size tileGridSize = null ) : CLAHE
clipLimit double
tileGridSize Size
return CLAHE

Dispose() protected method

Releases the resources
protected Dispose ( bool disposing ) : void
disposing bool /// If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. /// If false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed. ///
return void

GetClipLimit() public method

public GetClipLimit ( ) : double
return double

GetTilesGridSize() public method

public GetTilesGridSize ( ) : Size
return Size

SetClipLimit() public method

public SetClipLimit ( double clipLimit ) : void
clipLimit double
return void

SetTilesGridSize() public method

public SetTilesGridSize ( Size tileGridSize ) : void
tileGridSize Size
return void