Blame view

src/ai_engine_module/VidClothes.h 291 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
10
11
12
13
14
  public:
      VidClothes(/* args */);
      ~VidClothes();
  
      int init(int devId);
  
      int detect(vector<sy_img> vec_img);
  
  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};
  };