Histogram Equalization for Vapoursynth.
ehist.EqualizeHist(vnode clip)
- clip
A clip to process. 8-16 bit integer only.
Contrast Limited Adaptive Histogram Equalization for Vapoursynth.
This filter uses OpenCV internally because I don't know how to do tiles in VS (please send help).
ehist.CLAHE(vnode clip[, float limit=7, int tile=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. - tile
Tile size for histogram equalization.