Added openAlpr support library

This commit is contained in:
Matt Hill
2014-01-02 16:01:35 -06:00
parent 405fcdb3a2
commit 9aea5c3f00
9 changed files with 1551 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef TIMING_H
#define TIMING_H
#include <iostream>
#ifdef WINDOWS
// Mock this out for Windows
#define timespec int
#endif
void getTime(timespec* time);
double diffclock(timespec time1,timespec time2);
#endif