X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=blobdiff_plain;f=pctb%2Focr.h;h=792110466f4dfe05cde96b469697321ea56b1f1d;hp=b77a56f8905f5269cddedc4d33de783490ece33a;hb=5d58a08423953756871493042a9cfff032b66e18;hpb=d3eaa28d304c5b0639bc0f7e29b3285317d5c1e7 diff --git a/pctb/ocr.h b/pctb/ocr.h index b77a56f..7921104 100644 --- a/pctb/ocr.h +++ b/pctb/ocr.h @@ -1,6 +1,12 @@ #ifndef OCR_H #define OCR_H + +#define DEBUG_RECTANGLES +// #define DEBUG_OCR + + + #define _GNU_SOURCE #include @@ -11,8 +17,19 @@ #include #include #include +#include +#include + #include #include +#include + + +typedef struct { + int w,h; + char d[]; +} CanonImage; + typedef uint32_t Pixcol; #define PSPIXCOL(priscan) priscan##32 @@ -42,8 +59,59 @@ 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; + + +typedef struct { + unsigned long rgb; /* on screen */ + char c; /* canonical */ +} CanonColourInfo; + +extern const CanonColourInfo canoncolourinfos[]; + +CanonImage *alloc_canon_image(int w, int h); + +#ifdef DEBUG_RECTANGLES +# define CANIMG_DEBUG_RECTANGLE_1LINE(im,w,h) \ + fprintf(debug, "%4d ",y); \ + r= fwrite(im->d + y*w, 1,w, debug); \ + eassert(r==w); \ + fputc('\n',debug); +#else +# define CANIMG_DEBUG_RECTANGLE_1LINE(im,y,h) /* nothing */ +#endif + +#define CANONICALISE_IMAGE(im,w,h, COMPUTE_RGB) do{ \ + /* compute_rgb should be a number of statements, or \ + * a block, which assigns to \ + * unsigned long rgb; \ + * given the values of \ + * int x,y; \ + * all of which are anamorphic. Result is stored in im. \ + */ \ + (im)= alloc_canon_image((w), (h)); \ + \ + int x,y,r; \ + for (y=0; y<(h); y++) { \ + for (x=0; x<(w); x++) { \ + const CanonColourInfo *cci; \ + unsigned long rgb; \ + COMPUTE_RGB; \ + for (cci=canoncolourinfos; cci->c; cci++) \ + if (cci->rgb == rgb) { \ + (im)->d[y*(w) + x]= cci->c; \ + break; \ + } \ + } \ + CANIMG_DEBUG_RECTANGLE_1LINE((im),(w),(h)) \ + } \ + debug_flush(); \ + }while(0) -/* #define DEBUG_RECTANGLES */ -/* #define DEBUG_OCR */ #endif /*OCR_H*/