1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| //
| // Created by Scheaven on 2020/4/23.
| //
|
| #ifndef INC_01_CPP_SORT_DRAW_UTIL_H
| #define INC_01_CPP_SORT_DRAW_UTIL_H
| #include "../detecter_tools/yolo_v2_class.hpp" // imported functions from DLL
| #include "../config.h"
| #include "config_util.h"
| #include "result_util.h"
|
| void draw_SDK_result(const int cam_id, cv::Mat mat_img, TResult& t_result);
|
|
| #endif //INC_01_CPP_SORT_DRAW_UTIL_H
|
|