tilesGridSize property

Size get tilesGridSize

Implementation

Size get tilesGridSize {
  final p = calloc<cimgproc.Size>();
  cvRun(() => cimgproc.CLAHE_GetTilesGridSize(ref, p));
  return Size.fromPointer(p);
}
set tilesGridSize (Size value)

Implementation

set tilesGridSize(Size value) => cvRun(() => cimgproc.CLAHE_SetTilesGridSize(ref, value.ref));