-
-
Notifications
You must be signed in to change notification settings - Fork 1
CLAHE
Julek edited this page Oct 6, 2024
·
3 revisions
Contrast Limited Adaptive Histogram Equalization from OpenCV.
vszip.CLAHE(vnode clip[, int limit=7, int[] tiles=3])
- clip
A clip to process. 8-16 bit integer only. - limit
Threshold for contrast limiting.
For the 16 bit clip to have the same result as the 8 bit clip you have to multiply the limit by 256. - tiles
Tile size for histogram equalization.
Can be anint
or anint array
specifying the size of both sides.