two more benchmarks

This commit is contained in:
codetector
2020-03-31 15:18:11 -04:00
parent c6319a0dbd
commit 00f202bddb
14 changed files with 2206 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#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