CLAHE constructor

CLAHE([
  1. double clipLimit = 40,
  2. (int, int) tileGridSize = (8, 8)
])

Implementation

factory CLAHE([double clipLimit = 40, (int width, int height) tileGridSize = (8, 8)]) =>
    CLAHE.create(clipLimit, tileGridSize);