File: pix.h

package info (click to toggle)
euslisp 9.31%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 55,448 kB
  • sloc: ansic: 41,610; lisp: 3,339; makefile: 286; sh: 238; asm: 138; python: 53
file content (17 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

typedef struct pixel_image {
  unsigned char *imgary;	/*pointer to the image array*/
  long     depth; 		/*1,8,16, or 32*/
  long	   pixel_bytes;		/*number of bytes per a pixel*/	
  long     twidth, theight;	/*total_width, total_height*/
  long     tsize;		/*total_width x total_height*/
  long     start_x, start_y;
  long     width, height;	/*window_width, window_height*/
  long     wsize;		/*width x height */
  } pixel_image;

struct correlation_info {
  long corval;
  long x,y;
  };