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