Please add the following basic math operations
- image_MIN( image * i, const int min_value) ==> Set any pixel below MIN_VALUE to MIN_VALUE
- image_MAX( image * i, const int MAX_VALUE) ===> Set any pixel above MAX_VALUE to MAX_VALUE
- image_MINMAX ( image * i, const in MIN_VALUE, const int MAX_VALUE ) ==> combination of image_MIN and image_MAX functions
- image_SUB_TO_ZERO ( image *i ...