chiark / gitweb /
disable yppsc-ocr-resolver test mode
[ypp-sc-tools.db-test.git] / pctb / ocr.h
index 60234a8e91e6028ea8f028a912f0a53d8eafbc7d..5a08b5051dc0902d325c164e5fbac0d554e877e0 100644 (file)
@@ -6,12 +6,7 @@
 #ifndef OCR_H
 #define OCR_H
 
-
-// #define DEBUG_RECTANGLES
-// #define DEBUG_OCR
-
-
-#define _GNU_SOURCE
+#include "common.h"
 
 #include <string.h>
 #include <stdio.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <unistd.h>
-#include <stdarg.h>
 #include <inttypes.h>
 
-#include <sys/types.h>
 #include <sys/wait.h>
 
 
-typedef struct {
-  int w,h;
-  char d[];
-} CanonImage;
-
 typedef uint32_t Pixcol;
 #define PSPIXCOL(priscan) priscan##32
 
@@ -45,6 +33,7 @@ typedef struct {
 typedef const struct OcrCellTypeInfo *OcrCellType;
 extern const struct OcrCellTypeInfo ocr_celltype_text;
 extern const struct OcrCellTypeInfo ocr_celltype_number;
+const char *ocr_celltype_name(OcrCellType ct);
 
 
 typedef struct OcrReader OcrReader;
@@ -56,13 +45,4 @@ OcrResultGlyph *ocr(OcrReader *rd, OcrCellType, int w, Pixcol cols[]);
    */
 
 
-/*----- debugging arrangements, rather contingent -----*/
-
-void debug_flush(void);
-
-#define eassert assert
-#define debug stderr
-
-const char *get_vardir(void);
-
 #endif /*OCR_H*/