FingerPrint_httpans.h 560 B

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