21 lines
525 B
C
21 lines
525 B
C
/* --------------------------------------------------------------------- */
|
|
|
|
typedef struct {
|
|
int x, y, w, h;
|
|
} Rect;
|
|
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
/* image processing */
|
|
|
|
double niveau_zone(unsigned char *datas, int w, int h, Rect *rp);
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
/* display module */
|
|
|
|
int initialise_ecran(int type);
|
|
void finish(void);
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
|