home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright 1990 by John Wiley & Sons, Inc.
- All Rights Reserved.
- */
- /****************************************/
- /* Image Processing Header File */
- /* Area Processing Functions */
- /* written in Turbo C 2.0 */
- /* by */
- /* Craig A. Lindley */
- /* */
- /* Vers: 1.0 Last Update: 11/14/89 */
- /****************************************/
-
- /* Area Process Function Prototypes */
- CompletionCode Convolution(BYTE huge *InImage, unsigned Col, unsigned Row,
- unsigned Width, unsigned Height,
- short *Kernel, unsigned KernelCols,
- unsigned KernelRows, unsigned Scale,
- unsigned Absolute, BYTE huge * *OutImageBufPtr);
-
- CompletionCode RealConvolution(BYTE huge *InImage,
- unsigned Col, unsigned Row,
- unsigned Width, unsigned Height,
- double *Kernel, unsigned KernelCols,
- unsigned KernelRows, unsigned Scale,
- unsigned Absolute, BYTE huge * *OutImageBufPtr);
-
- CompletionCode MedianFilter(BYTE huge *InImage, unsigned Col, unsigned Row,
- unsigned Width, unsigned Height,
- unsigned NeighborhoodCols, unsigned NeighborhoodRows,
- BYTE huge * *OutImageBufPtr);
-
- CompletionCode SobelEdgeDet(BYTE huge *InImage,
- unsigned Col, unsigned Row,
- unsigned Width, unsigned Height,
- unsigned Threshold, unsigned Overlay,
- BYTE huge * *OutImageBufPtr);
-
-
-
-