FingerPrint_httpans.h 522 B

1234567891011121314151617181920212223
  1. #include "FingerPrintClass.h"
  2. #include "DeviceSimulator.h"
  3. typedef struct Image2FeatureAns {
  4. string lpbFeature;
  5. int iLength;
  6. JSONCONVERT2OBJECT_MEMEBER_REGISTER(lpbFeature, iLength)
  7. }Image2FeatureAns;
  8. typedef struct Image2TemplateAns {
  9. string lpbTemplate;
  10. int iLength;
  11. JSONCONVERT2OBJECT_MEMEBER_REGISTER(lpbTemplate, iLength)
  12. }Image2TemplateAns;
  13. typedef struct MatchAns {
  14. string lbpFeature;
  15. int iFeatureLen;
  16. JSONCONVERT2OBJECT_MEMEBER_REGISTER(lbpFeature, iFeatureLen)
  17. }MatchAns;