chiark / gitweb /
before rip out timing stuff and use just minimum snapshot delay
[ypp-sc-tools.db-test.git] / pctb / ocr.h
index 4b8ff05b9db1e760c528e54fb4d29448cb8f9bbc..d9a25f7a790da26812b5352a5d397f4c94e18352 100644 (file)
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
+#include <time.h>
+
 #include <sys/types.h>
 #include <sys/wait.h>
+#include <sys/time.h>
+
+
+typedef struct {
+  int w,h;
+  char d[];
+} CanonImage;
+
 
 typedef uint32_t Pixcol;
 #define PSPIXCOL(priscan) priscan##32
@@ -42,8 +52,15 @@ void debug_flush(void);
 
 const char *get_vardir(void);
 
+CanonImage *file_read_image(FILE *f);
+int main_test(void);
+
+#define MAX_PAGES 100
+extern CanonImage *page_images[MAX_PAGES];
+extern int npages;
+
 
-// #define DEBUG_RECTANGLES
+#define DEBUG_RECTANGLES
 // #define DEBUG_OCR
 
 #endif /*OCR_H*/