Blame view

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