MSheader.h 317 Bytes
#pragma once
typedef struct VPT_ObjInfo	//结果结构体
{
	int left;
	int top;
	int right;
	int bottom;
	int center_x;
	int center_y;
	int index;				//	行人/车辆类别,支持10类
	long id;					//	目标唯一ID,同一ID为同一目标
	int num;				//	该ID序列下的第num帧
	double confidence;		//	置信度
	int snap_flag;
}VPT_ObjInfo;