Files
vortex/tests/opencl/convolution/utils.h
2021-06-13 17:42:04 -07:00

11 lines
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