1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| //
| // Created by Scheaven on 2020/4/23.
| //
| #ifndef DRAW_UTIL_H
| #define DRAW_UTIL_H
| #include "../config.h"
| #include "std_target.h"
| #include "unistd.h"
|
| void save_human_img(cv::Mat aaaa, std::string path, int type, std::string name);
|
| void create_foldert(const char *path);
|
| void draw_SDK_result(cv::Mat mat_img, Target* target);
| void draw_SDK_result(const int cam_id, cv::Mat mat_img, TResult* t_result);
|
|
|
| #endif //DRAW_UTIL_H
|
|