vortex/benchmarks/old_opencl/convolution/utils.h
2020-04-14 06:35:20 -04:00

11 lines
No EOL
264 B
C

#ifndef __UTILS__
#define __UTILS__
typedef unsigned char uchar;
float* readImage(const char *filename, int* widthOut, int* heightOut);
void storeImage(float *imageOut, const char *filename, int rows, int cols,
const char* refFilename);
#endif