Logo white

Hu Chunming / village_ascend_arm

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • village_ascend_arm
  • src
  • ai_engine_module
  • VidClothes.h
  • 修正parse_road无返回值导致崩溃的问题; ...
    581a68a4
    返回值中sy_point更换为cv::Point;
    优化model_path
    Hu Chunming authored
    2025-01-14 17:27:44 +0800  
    Browse Code »
VidClothes.h 321 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#include "include.h"
#include "vid_clothes.h"

class VidClothes
{
public:
    VidClothes(/* args */);
    ~VidClothes();

    int init(int devId, std::string sdk_root);

    vector<int> detect(vector<sy_img> vec_img);

private:
    int release();

private:
    void* m_handle{nullptr};
    aclrtContext ctx{nullptr};
};