|
OpenCV for Unity 3.0.0
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.12.0/index.html ) for the details of the argument of the method.
|
Base class for Contrast Limited Adaptive Histogram Equalization. More...
Public Member Functions | |
| void | apply (Mat src, Mat dst) |
| Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization. | |
| void | collectGarbage () |
| double | getClipLimit () |
| Size | getTilesGridSize () |
| double double height | getTilesGridSizeAsValueTuple () |
| Vec2d | getTilesGridSizeAsVec2d () |
| void | setClipLimit (double clipLimit) |
| Sets threshold for contrast limiting. | |
| void | setTilesGridSize (in Vec2d tileGridSize) |
| Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles. | |
| void | setTilesGridSize (in(double width, double height) tileGridSize) |
| Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles. | |
| void | setTilesGridSize (Size tileGridSize) |
| Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles. | |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
| virtual void | clear () |
| Clears the algorithm state. | |
| virtual bool | empty () |
| Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
| virtual string | getDefaultName () |
| IntPtr | getNativeObjAddr () |
| void | save (string filename) |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
| void | Dispose () |
| void | ThrowIfDisposed () |
Static Public Member Functions | |
| static new CLAHE | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
| static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
| static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Public Attributes | |
| double | width |
Protected Member Functions | |
| override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
| DisposableOpenCVObject () | |
| DisposableOpenCVObject (bool isEnabledDispose) | |
| DisposableOpenCVObject (IntPtr ptr) | |
| DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
| override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
| DisposableObject () | |
| DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Package Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Package Attributes inherited from OpenCVForUnity.DisposableOpenCVObject | |
Properties inherited from OpenCVForUnity.DisposableObject | |
| bool | IsDisposed [get, protected set] |
| bool | IsEnabledDispose [get, set] |
Base class for Contrast Limited Adaptive Histogram Equalization.
|
static |
Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.
| src | Source image of type CV_8UC1 or CV_16UC1. |
| dst | Destination image. |
| void OpenCVForUnity.ImgprocModule.CLAHE.collectGarbage | ( | ) |
|
protectedvirtual |
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
| double OpenCVForUnity.ImgprocModule.CLAHE.getClipLimit | ( | ) |
| Size OpenCVForUnity.ImgprocModule.CLAHE.getTilesGridSize | ( | ) |
| double double height OpenCVForUnity.ImgprocModule.CLAHE.getTilesGridSizeAsValueTuple | ( | ) |
| Vec2d OpenCVForUnity.ImgprocModule.CLAHE.getTilesGridSizeAsVec2d | ( | ) |
| void OpenCVForUnity.ImgprocModule.CLAHE.setClipLimit | ( | double | clipLimit | ) |
Sets threshold for contrast limiting.
| clipLimit | threshold value. |
| void OpenCVForUnity.ImgprocModule.CLAHE.setTilesGridSize | ( | in Vec2d | tileGridSize | ) |
Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles.
| tileGridSize | defines the number of tiles in row and column. |
| void OpenCVForUnity.ImgprocModule.CLAHE.setTilesGridSize | ( | in(double width, double height) | tileGridSize | ) |
Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles.
| tileGridSize | defines the number of tiles in row and column. |
| void OpenCVForUnity.ImgprocModule.CLAHE.setTilesGridSize | ( | Size | tileGridSize | ) |
Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles.
| tileGridSize | defines the number of tiles in row and column. |
| double OpenCVForUnity.ImgprocModule.CLAHE.width |