chiark / gitweb /
rationalise debugging output
[ypp-sc-tools.db-test.git] / pctb / convert.c
1
2 #include "ocr.h"
3
4 typedef struct {
5   unsigned long rgb; /* on screen */
6   char c; /* canonical */
7 } CanonColourInfo;
8
9 static int height, width;
10 static char *image;
11
12 void debug_flush(void) {
13   eassert(!fflush(debug));
14   eassert(!ferror(debug));
15 }
16
17 typedef struct {
18   int x, y;
19 } Point;
20
21 typedef struct { /* both inclusive */
22   Point tl;
23   Point br;
24 } Rect;
25
26 static inline char get(int x, int y) { return image[y * width + x]; }
27 static inline char get_p(Point p) { return get(p.x,p.y); }
28
29
30 #define START_MAIN {200,200}
31 #define MIN_COLUMNS         6
32 #define INTERESTING_COLUMNS 6
33 #define TEXT_COLUMNS        2
34 #define MAX_COLUMNS         7
35
36 static Rect mainr = { START_MAIN,START_MAIN };
37 static int commbasey, comminty;
38 static int colrightx[INTERESTING_COLUMNS];
39 static int text_h;
40 static OcrReader *rd;
41
42 static const CanonColourInfo canoncolourinfos[]= {
43   { 0x475A5E, '*' }, /* edge */
44   { 0x2C5F7A, '*' }, /* edge just under box heading shadow */
45   { 0x7D9094, '+' }, /* interbox */
46   { 0xBDC5BF, ' ' }, /* background - pale */
47   { 0xADB5AF, ' ' }, /* background - dark */
48   { 0x000000, 'o' }, /* foreground */
49   { 0xD4B356, ' ' }, /* background (cursor) */
50   { 0xFFFFFF, 'o' }, /* foreground (cursor) */
51   { 0,0 }
52 };
53
54 static void require_rectangle(int tlx, int tly, int brx, int bry,
55                               const char *ok) {
56   int x,y;
57   for (x=tlx; x<=brx; x++)
58     for (y=tly; y<=bry; y++) {
59       int c= get(x,y);
60       assert(strchr(ok,c));
61     }
62 }
63 static void require_rectangle_r(Rect rr, const char *ok) {
64   require_rectangle(rr.tl.x,rr.tl.y, rr.br.x,rr.br.y, ok);
65 }
66
67 static void debug_rect(const char *what, int whati, Rect rr) {
68 #ifdef DEBUG_RECTANGLES
69   int y,r,w;
70   fprintf(debug, "%s %d: %d,%d..%d,%d:\n", what, whati,
71           rr.tl.x,rr.tl.y, rr.br.x,rr.br.y);
72   w= rr.br.x - rr.tl.x + 1;
73   for (y=rr.tl.y; y<=rr.br.y; y++) {
74     fprintf(debug, "%4d%*s|", y, rr.tl.x,"");
75     r= fwrite(image + y*width + rr.tl.x, 1, w, debug);
76     eassert(r==w);
77     fputc('|',debug);
78     fputc('\n',debug);
79   }
80 #endif
81   debug_flush();
82 }
83
84 #define WALK_UNTIL(point,coord,increm,last,edge)                        \
85   for (;;) {                                                            \
86     if ((point).coord == (last)+(increm)) break;                        \
87     if (get_p((point)) == (edge)) { (point).coord -= (increm); break; } \
88     (point).coord += (increm);                                          \
89   }
90
91 #define WALK_UNTIL_MUST(point,coord,increm,last,edge)   \
92   do {                                                  \
93     WALK_UNTIL(point,coord,increm,last,edge);           \
94     eassert((point).coord != (last)+(increm));          \
95   } while(0)
96
97 static void find_structure(void) {
98   Rect whole = { {0,0}, {width-1,height-1} };
99
100   WALK_UNTIL_MUST(mainr.tl, x,-1, whole.tl.x, '*');
101   WALK_UNTIL_MUST(mainr.tl, y,-1, whole.tl.y, '*');
102   WALK_UNTIL_MUST(mainr.br, x,+1, whole.br.x, '*');
103   WALK_UNTIL_MUST(mainr.br, y,+1, whole.br.y, '*');
104
105   require_rectangle(mainr.tl.x-1, mainr.tl.y, mainr.tl.x-1, mainr.br.y, "*");
106   require_rectangle(mainr.br.x+1, mainr.tl.y, mainr.br.x+1, mainr.br.y, "*");
107   require_rectangle(mainr.tl.x, mainr.tl.y-1, mainr.br.x, mainr.tl.y-1, "*");
108   require_rectangle(mainr.tl.x, mainr.br.y+1, mainr.br.x, mainr.br.y+1, "*");
109
110 #define CHECK_STRIP_BORDER(tlbr,xy,increm)      \
111   do {                                          \
112     Point csb_p;                                \
113     Rect csb_r;                                 \
114     csb_p= mainr.tl;                            \
115     csb_p.xy= mainr.tlbr.xy;                    \
116     if (get_p(csb_p)=='+') {                    \
117       csb_r= mainr;                             \
118       csb_r.tl.xy= csb_p.xy;                    \
119       csb_r.br.xy= csb_p.xy;                    \
120       require_rectangle_r(csb_r, "+");          \
121       mainr.tlbr.xy += increm;                  \
122     }                                           \
123   } while(0)
124
125   debug_rect("mainr",0, mainr);
126
127   CHECK_STRIP_BORDER(tl,x,+1);
128   CHECK_STRIP_BORDER(tl,y,+1);
129   CHECK_STRIP_BORDER(br,x,-1);
130   CHECK_STRIP_BORDER(br,y,-1);
131
132   debug_rect("mainr",1, mainr);
133
134   Point up = START_MAIN;
135   WALK_UNTIL_MUST(up, y,-1, mainr.tl.y, '+');
136
137   Point down = START_MAIN;
138   down.y++;
139   WALK_UNTIL_MUST(down, y,+1, mainr.br.y, '+');
140
141 #ifdef DEBUG_RECTANGLES
142   int xscaleunit, y,x;
143   for (y=0, xscaleunit=1; y<4; y++, xscaleunit*=10) {
144     fprintf(debug,"     ");
145     for (x=0; x<=width; x++) {
146       if (x % xscaleunit) fputc(' ',debug);
147       else fprintf(debug,"%d",(x / xscaleunit)%10);
148     }
149     fputc('\n',debug);
150   }
151 #endif
152
153   commbasey= up.y;
154   comminty= down.y - up.y + 2;
155
156   Point across= { mainr.tl.x, commbasey };
157   int colno=0;
158   for (;;) {
159     eassert(get_p(across) != '+');
160     WALK_UNTIL(across, x,+1, mainr.br.x, '+');
161     eassert(colno < MAX_COLUMNS);
162     int colrx= across.x;
163     if (colrx > mainr.br.x) colrx= mainr.br.x;
164     if (colno < INTERESTING_COLUMNS)
165       colrightx[colno]= colrx;
166       
167     colno++;
168     
169     if (across.x >= mainr.br.x-1)
170       break;
171
172     across.x++;
173     require_rectangle(across.x,mainr.tl.y, across.x,mainr.br.y, "+");
174     across.x++;
175   }
176   eassert(colno >= MIN_COLUMNS);
177
178   text_h = comminty - 1;
179 }                   
180
181 static void find_commodity(int offset, Rect *rr) {
182   /* rr->tl.x==-1 if offset out of range */
183   rr->tl.y= commbasey - offset*comminty;
184   rr->br.y= rr->tl.y + comminty-2;
185   if (rr->tl.y < mainr.tl.y || rr->br.y > mainr.br.y) { rr->tl.x=-1; return; }
186   if (rr->tl.y > mainr.tl.y)
187     require_rectangle(rr->tl.x,rr->tl.y-1, rr->br.x,rr->tl.y-1, "+");
188   if (rr->br.y < mainr.tl.y)
189     require_rectangle(rr->tl.x,rr->br.y+1, rr->br.x,rr->br.y+1, "+");
190   
191   rr->tl.x= mainr.tl.x;
192   rr->br.x= mainr.br.x;
193 }
194
195 static void find_table_entry(Rect commod, int colno, Rect *cellr) {
196   cellr->tl.y= commod.tl.y;
197   cellr->br.y= commod.br.y;
198   cellr->tl.x= !colno ? commod.tl.x : colrightx[colno-1]+2;
199   cellr->br.x=                        colrightx[colno];
200   debug_rect("cell", colno, *cellr);
201   require_rectangle_r(*cellr, " o");
202 }
203
204 static void load_image_and_canonify(void) {
205   struct pam inpam;
206   unsigned char rgb[3];
207   int x,y,r;
208   const CanonColourInfo *cci;
209
210   pnm_readpaminit(stdin, &inpam, sizeof(inpam));
211   height= inpam.height;
212   width= inpam.width;
213   eassert(inpam.maxval == 255);
214   eassert(inpam.bytes_per_sample == 1);
215
216   image= malloc(width*height);
217   eassert(image);
218   memset(image,'?',width*height);
219
220   for (y=0; y<height; y++) {
221     for (x=0; x<width; x++) {
222       r= fread(&rgb,1,3,stdin);  eassert(r==3);
223       unsigned long rgb_l=
224         ((unsigned long)rgb[0]<<16) |
225         ((unsigned long)rgb[1]<<8) |
226                        (rgb[2]);
227       for (cci=canoncolourinfos; cci->c; cci++)
228         if (cci->rgb == rgb_l) {
229           image[y*width + x]= cci->c;
230           break;
231         }
232     }
233 #ifdef DEBUG_RECTANGLES
234     fprintf(debug, "%4d ",y);
235     r= fwrite(image + y*width, 1,width, debug);  eassert(r==width);
236     fputc('\n',debug);
237 #endif
238   }
239   debug_flush();
240 }
241
242 static void ocr_rectangle(Rect r, const OcrCellType ct) {
243   OcrResultGlyph *results, *res;
244
245   int w= r.br.x - r.tl.x + 1;
246   Pixcol cols[w+1];
247   int x,y;
248   for (x=0; x<w; x++) {
249     Pixcol cx, rv;
250     for (y=0, cx=0, rv=1; y<text_h; y++, rv<<=1) {
251       switch (get(x+r.tl.x, y+r.tl.y)) {
252       case ' ':           break;
253       case 'o': cx |= rv; break;
254       default: eassert(!"wrong pixel");
255       }
256     }
257     cols[x]= cx;
258   }
259   cols[w]= 0;
260
261   results= ocr(rd,ct,w,cols);
262   printf("YES! \"");
263   for (res=results; res->s; res++)
264     printf("%s",res->s);
265   printf("\"\n");
266   eassert(!ferror(stdout));
267   eassert(!fflush(stdout));
268 }
269
270 int main(void) {
271   Rect thisr, entryr;
272   int tryrect, colno;
273
274   load_image_and_canonify();
275   find_structure();
276   rd= ocr_init(text_h);
277
278   for (tryrect= +height; tryrect >= -height; tryrect--) {
279     find_commodity(tryrect, &thisr);
280     if (thisr.tl.x < 0)
281       continue;
282     debug_rect("commod",tryrect, thisr);
283     
284     for (colno=0; colno<MIN_COLUMNS; colno++) {
285       find_table_entry(thisr,colno,&entryr);
286       ocr_rectangle(entryr,
287                     colno<TEXT_COLUMNS
288                     ? &ocr_celltype_text
289                     : &ocr_celltype_number);
290     }
291   }
292   return 0;
293 }
294
295 const char *get_vardir(void) { return "."; }