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


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

    int init(int gpuid, char* auth_license);
    int process(sy_img * batch_img, int batch_size, human_fea_result* result);
    int release();

private:
    void* handle{nullptr};
};