1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "include.h" #include "human_car_parsing.h" class HumanCarAnalysis { public: HumanCarAnalysis(/* args */); ~HumanCarAnalysis(); int init(int devId); int detect(vector<sy_img> vec_img); private: int release(); private: void* m_handle{nullptr}; aclrtContext ctx{nullptr}; };