Syntax
void sod_normalize_image(sod_img input);
Description
Enhances the contrast of a color image by adjusting the pixels color to span the entire range of colors available.
Parameters
sod_img input
The input image to be processed. The image can be loaded from disk using sod_img_load_from_file(), from memory (i.e. network socket) via sod_img_load_from_mem() or dynamically created via sod_make_image().
Return Value
None.
Example
Checkout the introduction course, the C/C++ samples on the download page or refer to the SOD Github Repository.
See also
sod_canny_edge_image • sod_image_draw_bbox • sod_resize_image • sod_hough_lines_detect • sod_crop_image • sod_image_to_blob.