12345678910111213141516171819 |
- #pragma once
- //sizeof( struct xyt_packed ) * MAX_BOZORTH_MINUTIAE
- //4 * 200 = 800
- //#define NBIS_XYT_PACKED_MAX_LEN 800
- #define NBIS_XYT_MAX_COUNT 200
- struct xyt_packed{
- int x:10;
- int y:11;
- int t:11;
- };
- extern int nbisPgmToMinutiae( unsigned char* pgm, struct xyt_packed* xytPacked );
- extern int nbisBozorth3Packed( struct xyt_packed* packedProbe, int probeCount, struct xyt_packed* packedGallery, int galleryCount );
|