123456789101112131415161718192021222324 |
- #include "FingerPrintClass.h"
- #include "DeviceSimulator.h"
- typedef struct Image2FeatureAns {
- string lpbFeature;
- int iLength;
- int bGenerateFile;
- JSONCONVERT2OBJECT_MEMEBER_REGISTER(lpbFeature, iLength, bGenerateFile)
- }Image2FeatureAns;
- typedef struct Image2TemplateAns {
- string lpbTemplate;
- int iLength;
- JSONCONVERT2OBJECT_MEMEBER_REGISTER(lpbTemplate, iLength)
- }Image2TemplateAns;
- typedef struct MatchAns {
- string lbpFeature;
- int iFeatureLen;
- JSONCONVERT2OBJECT_MEMEBER_REGISTER(lbpFeature, iFeatureLen)
- }MatchAns;
|