Logo white

Hu Chunming / Project_VideoStructure

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Project_VideoStructure
  • vehicle_structure_platform.git0708-30...
  • src
  • VPT
  • snapshot_analysis
  • HumanParsing.h
  • 代码结构优化,未修改逻辑
    be893a22
    Hu Chunming authored
    2023-11-02 16:50:03 +0800  
    Browse Code »
HumanParsing.h 410 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 "human_parsing.h"


#pragma once
#include <iostream>
#include "utools.h"
#include <vector>
using namespace std;


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

    int init(int gpuid, char* auth_license);
    int process(sy_img * batch_img, int batchsize, hp_analysis_res*& result);
    int release();

private:
    void *handle {nullptr};
};