mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 22:07:41 -04:00
11 lines
No EOL
264 B
C
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 |