include.h
804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef __AI_ENGINE_MODULE_INCLUDE_H__
#define __AI_ENGINE_MODULE_INCLUDE_H__
#include <iostream>
#include <sstream>
#include <fstream>
#include "sy_common.h"
#include "sy_errorinfo.h"
#include "opencv2/opencv.hpp"
#include "opencv2/imgcodecs/legacy/constants_c.h"
#include "opencv2/imgproc/types_c.h"
#include "sys/time.h"
#include "utils.h"
#include "dvpp_process.h"
#include "stream_data.h"
#include "../utils/logger.hpp"
#include <chrono>
#include <dirent.h>
#include <vector>
#include <string>
#include<math.h>
#include<string.h>
#include<stdio.h>
#include <time.h>
using namespace std;
using namespace cv;
// static std::vector<std::string> STANDARD_COLOR_TABLE = {"棕", "橙", "灰", "白", "粉", "紫", "红", "绿", "蓝", "银", "青", "黄", "黑", "多色", "其他"};
#endif