00001 00002 typedef struct pixel_image { 00003 unsigned char *imgary; /*pointer to the image array*/ 00004 long depth; /*1,8,16, or 32*/ 00005 long pixel_bytes; /*number of bytes per a pixel*/ 00006 long twidth, theight; /*total_width, total_height*/ 00007 long tsize; /*total_width x total_height*/ 00008 long start_x, start_y; 00009 long width, height; /*window_width, window_height*/ 00010 long wsize; /*width x height */ 00011 } pixel_image; 00012 00013 struct correlation_info { 00014 long corval; 00015 long x,y; 00016 }; 00017