libnbis.h 428 B

12345678910111213141516171819
  1. #pragma once
  2. //sizeof( struct xyt_packed ) * MAX_BOZORTH_MINUTIAE
  3. //4 * 200 = 800
  4. //#define NBIS_XYT_PACKED_MAX_LEN 800
  5. #define NBIS_XYT_MAX_COUNT 200
  6. struct xyt_packed{
  7. int x:10;
  8. int y:11;
  9. int t:11;
  10. };
  11. extern int nbisPgmToMinutiae( unsigned char* pgm, struct xyt_packed* xytPacked );
  12. extern int nbisBozorth3Packed( struct xyt_packed* packedProbe, int probeCount, struct xyt_packed* packedGallery, int galleryCount );