1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #ifndef __DebugNetwork_H__
| #define __DebugNetwork_H__
|
| #include <stdint.h>
|
| #include "FaceCache.h"
|
| #define ENABLE_DEBUG_SENDFACEDETECT
| #define ENABLE_DEBUG_SENDFACEADD
|
| extern std::string g_dbgLog;
|
| void dbgSendFaceDetect(uint8_t* buffer, size_t buffSize);
|
| void dbgSendFaceAdd(const NativeImgIdx& imgidx, uint8_t* buffImg);
|
| #endif
|
|