Blame view

src/ai_engine_module/include.h 500 Bytes
eac85cd5   Hu Chunming   调通va
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  #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 "time.h"
  #include "sys/time.h"
  
  #include "utils.h"
  #include "dvpp_process.h"
  
  
  #include <chrono>
  #include <dirent.h>
427201b2   Hu Chunming   完善结果返回
23
  #include <vector>
eac85cd5   Hu Chunming   调通va
24
25
26
27
28
  
  using namespace std;
  using namespace cv;
  
  
b3012672   Hu Chunming   天啊及hp,road_seg子sd...
29
  
eac85cd5   Hu Chunming   调通va
30
  #endif