chiark / gitweb /
better option name
[ypp-sc-tools.db-live.git] / pctb / ocr.h
index d8491e68f7dfef0eb0ad634e5473353bfeb092a6..a688742cc631f0bdb88b66bce1b3e8d360713794 100644 (file)
@@ -1,16 +1,24 @@
+/*
+ * ocr.c forms a mostly-self-contained bit
+ * so we put its declarations in this separate file
+ */
+
 #ifndef OCR_H
 #define OCR_H
 
+
 #define _GNU_SOURCE
 
-#include <pam.h>
-#include <stdint.h>
-#include <inttypes.h>
-#include <assert.h>
 #include <string.h>
-#include <stdlib.h>
 #include <stdio.h>
+#include <errno.h>
+#include <assert.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdarg.h>
+#include <inttypes.h>
+
 #include <sys/types.h>
 #include <sys/wait.h>
 
@@ -20,7 +28,6 @@ typedef struct {
   char d[];
 } CanonImage;
 
-
 typedef uint32_t Pixcol;
 #define PSPIXCOL(priscan) priscan##32
 
@@ -30,10 +37,12 @@ typedef struct {
   unsigned ctxmap; /* match context index */
 } OcrResultGlyph;
 
+
 typedef const struct OcrCellTypeInfo *OcrCellType;
 extern const struct OcrCellTypeInfo ocr_celltype_text;
 extern const struct OcrCellTypeInfo ocr_celltype_number;
 
+
 typedef struct OcrReader OcrReader;
 OcrReader *ocr_init(int h);
 
@@ -42,18 +51,34 @@ OcrResultGlyph *ocr(OcrReader *rd, OcrCellType, int w, Pixcol cols[]);
    * array is valid until next call to ocr()
    */
 
-void debug_flush(void);
 
-#define eassert assert
-#define debug stdout
+/*----- debugging arrangements, rather contingent -----*/
 
-const char *get_vardir(void);
+#define DEBUG_FLAG_LIST                                \
+   DF(ocr)                                     \
+   DF(rect)                                    \
+   DF(callout)
+
+enum {
+#define DF(f) dbg__shift_##f,
+  DEBUG_FLAG_LIST
+#undef DF
+};
+enum {
+#define DF(f) dbg_##f = 1 << dbg__shift_##f,
+  DEBUG_FLAG_LIST
+#undef DF
+};
 
-CanonImage *file_read_image(FILE *f);
-int main_test(void);
+unsigned debug_flags;
 
+#define DEBUGP(f) (!!(debug_flags & dbg_##f))
 
-#define DEBUG_RECTANGLES
-// #define DEBUG_OCR
+void debug_flush(void);
+
+#define eassert assert
+#define debug stderr
+
+const char *get_vardir(void);
 
 #endif /*OCR_H*/