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
  • 添加clothes算法
    15756629
    Hu Chunming authored
    2024-12-26 18:51:30 +0800  
    Browse Code »
VidClothes.h 316 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 22 23
#include "include.h"
#include "vid_clothes.h"

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

    int init(int devId);

    int detect(vector<sy_img> vec_img);

private:
    void release();

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