home *** CD-ROM | disk | FTP | other *** search
- /*
- * rgb2gray.h
- *
- * Practical Algorithms for Image Analysis
- *
- * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
- */
- #ifndef _RGB2GRAY_H_
- #define _RGB2GRAY_H_
-
- #include <stdio.h>
- #include <math.h>
- #include <stdlib.h>
- #include <string.h>
- #include "misc.h"
- #include "images.h"
- #include "tiffimage.h" /* tiff file format info */
-
- #if defined(WIN32)
- #define M_PI 3.1415926535
- #endif
-
- /* function prototypes */
- extern int input (int argc, char *argv[], char *type);
- extern void usage (char *progname);
- extern void main (int argc, char *argv[]);
-
- #endif /* _RGB2GRAY_H_ */
-