pans
2017-01-04 4460e0af9cd8ad5f4dd55d96421e5340079576b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _TOOLS_H_
#define _TOOLS_H_
 
#include "DBuntil.h"
#include "faceAPI.h"
 
class faceAPI;
class DButil;
 
class tools
{
public:
    tools();
    ~tools();
    int search(cv::Mat image,person *p);
    int search(char* s_feature,person *p);
private:
    person do_search(int idx);
}
 
#endif