Blame view

src/helpers/img_util.h 345 Bytes
87917184   Hu Chunming   同步代码,新添加了一些事件检测
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #ifndef __HELPERS_IMG_TUIL_H__
  #define __HELPERS_IMG_TUIL_H__
  
  
  #include "../common/sy_common.h"
  #include <vector>
  
  namespace common {
  
  bool isInPolygon(const sy_point* point_array, int point_count, const sy_point& center);
  
  void save_result(int height, int width, sy_point* point_array, int point_count, std::vector<sy_point> vec_pt);
  }
  
  #endif