1 /*******************************************************************************
4 This software was developed at the National Institute of Standards and
5 Technology (NIST) by employees of the Federal Government in the course
6 of their official duties. Pursuant to title 17 Section 105 of the
7 United States Code, this software is not subject to copyright protection
8 and is in the public domain. NIST assumes no responsibility whatsoever for
9 its use by other parties, and makes no guarantees, expressed or implied,
10 about its quality, reliability, or any other characteristic.
13 This software was developed to promote biometric standards and biometric
14 technology testing for the Federal Government in accordance with the USA
15 PATRIOT Act and the Enhanced Border Security and Visa Entry Reform Act.
16 Specific hardware and software products identified in this software were used
17 in order to perform the software development. In no case does such
18 identification imply recommendation or endorsement by the National Institute
19 of Standards and Technology, nor does it imply that the products and equipment
20 identified are necessarily the best available for the purpose.
22 *******************************************************************************/
27 /* Modified 10/26/1999 by MDG to avoid indisciminate erosion of pixels */
28 /* along the edge of the binary image. */
30 extern void erode_charimage_2(unsigned char *, unsigned char *,
31 const int, const int);
32 extern void dilate_charimage_2(unsigned char *, unsigned char *,
33 const int, const int);
34 extern char get_south8_2(char *, const int, const int, const int, const int);
35 extern char get_north8_2(char *, const int, const int, const int);
36 extern char get_east8_2(char *, const int, const int, const int);
37 extern char get_west8_2(char *, const int, const int);
39 #endif /* !__MORPH_H__ */