e30d6793
Zou XiKun
v0.0.1
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "human_car_parsing.h"
#include <iostream>
#include "utools.h"
#include <vector>
using namespace std;
int HumanCarParsing_Init(void *&handle, int gpuid);
int HumanCarParsing_Process(void * handle, sy_img * batch_img,int batchsize, hcp_analysis_result *&result);
int HumanCarParsing_Release(void *& handle);
|