View Source Evision.CLAHE (Evision v0.1.7)

Link to this section Summary

cv

Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.

Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.

Python prototype (for reference):

Python prototype (for reference):

Python prototype (for reference):

Sets threshold for contrast limiting.

Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles.

Link to this section cv

Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.

Positional Arguments
  • src: Evision.Mat.

    Source image of type CV_8UC1 or CV_16UC1.

Return

Python prototype (for reference):

apply(src[, dst]) -> dst

Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.

Positional Arguments
  • src: Evision.Mat.

    Source image of type CV_8UC1 or CV_16UC1.

Return

Python prototype (for reference):

apply(src[, dst]) -> dst

Python prototype (for reference):

collectGarbage() -> None

Python prototype (for reference):

getClipLimit() -> retval

Python prototype (for reference):

getTilesGridSize() -> retval
Link to this function

setClipLimit(self, clipLimit)

View Source

Sets threshold for contrast limiting.

Positional Arguments
  • clipLimit: double.

    threshold value.

Python prototype (for reference):

setClipLimit(clipLimit) -> None
Link to this function

setTilesGridSize(self, tileGridSize)

View Source

Sets size of grid for histogram equalization. Input image will be divided into equally sized rectangular tiles.

Positional Arguments
  • tileGridSize: Size.

    defines the number of tiles in row and column.

Python prototype (for reference):

setTilesGridSize(tileGridSize) -> None

Link to this section Functions

Raising version of apply/2.

Raising version of apply/3.

Raising version of collectGarbage/1.

Raising version of getClipLimit/1.

Raising version of getTilesGridSize/1.

Link to this function

setClipLimit!(self, clipLimit)

View Source

Raising version of setClipLimit/2.

Link to this function

setTilesGridSize!(self, tileGridSize)

View Source

Raising version of setTilesGridSize/2.