Blame view

src/helpers/img_util.h 345 Bytes
8072fc32   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