
Applies CLAHE or global histogram equalization to each Image on a CPU, enhancing the luma channel in a chosen working space (or the whole image in grayscale) and emitting a contrast-enhanced Image.
Lift a low-contrast frame before OCR so faint text is more legible.
Brighten a dim camera feed before detection, streaming the result out.
Image passes through unchanged. Color frames are equalized on the luma channel only and keep their channel layout, but when color_space is `gray` (or the input is already single-channel) the output is single-channel, so downstream consumers expecting 3 channels must handle that.clip_limit and tile_grid apply only to CLAHE and are ignored when method is `global`; a smaller tile grid produces stronger local contrast and a higher clip limit amplifies contrast but also noise.Automated release