Blame view

src/ai_engine_module/MotorPhoneAnalysis.h 290 Bytes
f171c20a   Hu Chunming   添加moter_rainshed ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #include "include.h"
  
  class MotorPhoneAnalysis
  {
  public:
      MotorPhoneAnalysis(/* args */);
      ~MotorPhoneAnalysis();
  
      int init(int devId);
  
      int detect(vector<sy_img> vec_img);
  
  private:
      int release();
  
  private:
      void* m_handle{nullptr};
      aclrtContext ctx{nullptr};
  };