blob: 119a092a34698f303c611cf221e83323bea56592 [file] [log] [blame]
/**
This file contains some utility functions that Image processing kernels require
Written by Pankaj Kukreja
Indian Institute of Technology Hyderabad
*/
#ifndef _IMAGEHELPER_H_
#define _IMAGEHELPER_H_
void initializeRandomImage(int *image, int height, int width);
void initializeRandomColouredImage(int *image, int height, int width);
void saveImage(int *image, const char *outputFile, int height, int width);
#endif /* _IMAGEHELPER_H_ */