pans
2017-01-05 13ab3d6db66bef485afda3278ed7ca6d14c735c8
RtspFace/demo/src/tools.h
@@ -4,9 +4,6 @@
#include "DBuntil.h"
#include "faceAPI.h"
class faceAPI f_api;
class DButil f_db;
class tools
{
public:
@@ -14,11 +11,16 @@
   ~tools();
   int search(cv::Mat image,person *p);
   int search(char* s_feature,person *p);
   int register(cv::Mat image,person *p);
   int reg(cv::Mat image,person *p);
   bool init();
private:
   int do_register(cv::Mat image,person *p);
   person do_search(int idx);
   int idx;
}
   int do_search(person *p);
   person per;
   DBuntil dbu;
   faceAPI f_api;
};
#endif