// image_operations.h # ifndef IMAGE_OPERATIONS_H_ # define IMAGE_OPERATIONS_H_ # include # include # include # include "../Tools/tools.h" void greyscale(SDL_Surface *img); int mediumPixel(SDL_Surface *img); void blacknwhite(SDL_Surface *img); void noiseReduction(SDL_Surface *img); SDL_Surface* increaseChar(SDL_Surface *img); SDL_Surface* Resize(SDL_Surface *img); # endif