10 lines
260 B
C
10 lines
260 B
C
|
#pragma once
|
||
|
|
||
|
double get_current_time();
|
||
|
|
||
|
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);
|