createCLAHE function

CLAHE createCLAHE({
  1. double clipLimit = 40,
  2. (int, int) tileGridSize = (8, 8),
})

Implementation

CLAHE createCLAHE({double clipLimit = 40, (int width, int height) tileGridSize = (8, 8)}) {
  return CLAHE.create(clipLimit, tileGridSize);
}