Blame view

src/ai_engine_module/VidClothes.h 321 Bytes
15756629   Hu Chunming   添加clothes算法
1
2
3
4
5
  #include "include.h"
  #include "vid_clothes.h"
  
  class VidClothes
  {
15756629   Hu Chunming   添加clothes算法
6
7
8
9
  public:
      VidClothes(/* args */);
      ~VidClothes();
  
581a68a4   Hu Chunming   修正parse_road无返回值导...
10
      int init(int devId, std::string sdk_root);
15756629   Hu Chunming   添加clothes算法
11
  
427201b2   Hu Chunming   完善结果返回
12
      vector<int> detect(vector<sy_img> vec_img);
15756629   Hu Chunming   添加clothes算法
13
14
  
  private:
4a273a4a   Hu Chunming   添加hcp和hp
15
      int release();
15756629   Hu Chunming   添加clothes算法
16
17
18
19
20
  
  private:
      void* m_handle{nullptr};
      aclrtContext ctx{nullptr};
  };