1234567891011121314151617181920212223 |
- #include "FingerPrintClass.h"
- #include "DeviceSimulator.h"
- typedef struct Image2FeatureAns {
- string lpbFeature;
- int iLength;
- JSONCONVERT2OBJECT_MEMEBER_REGISTER(lpbFeature, iLength)
- }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;
|