home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright 1990 by John Wiley & Sons, Inc.
- All Rights Reserved.
- */
- /****************************************/
- /* Image Processing Header File */
- /* Frame Processing Functions */
- /* written in Turbo C 2.0 */
- /* by */
- /* Craig A. Lindley */
- /* */
- /* Vers: 1.0 Last Update: 11/14/89 */
- /****************************************/
-
- /* User defined image combination type */
- typedef enum {And,Or,Xor,Add,Sub,Mult,Div,Min,Max,Ave,Overlay} BitFunction;
-
- /* Frame Process Function Prototypes */
-
- void CombineImages(BYTE huge *SImage,
- unsigned SCol, unsigned SRow,
- unsigned SWidth, unsigned SHeight,
- BYTE huge *DImage,
- unsigned DCol, unsigned DRow,
- enum BitFunction CombineType,
- short Scale);
-
-