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
  • HumanCarParsing.h
  • 代码优化,改动较大,可能有逻辑被修改
    bab9a6c3
    Hu Chunming authored
    2023-11-03 11:06:55 +0800  
    Browse Code »
HumanCarParsing.h 418 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#pragma once
#include "human_car_parsing.h"
#include <iostream>
#include "utools.h"
#include <vector>
using namespace std;


class HumanCarParsing {
public:
    HumanCarParsing();
    ~HumanCarParsing();
    
    int init(int gpuid, char* auth_license);
    int process(sy_img * batch_img,int batchsize, hcp_analysis_result *result);
    int release();

private:
    void* handle {nullptr};
};