| | |
| | | int iCharNum; //车牌字符数目 |
| | | }cPlateIDCloudSDKResult; |
| | | |
| | | typedef struct _cPlateInfo |
| | | { |
| | | int ePlateColor; |
| | | int ePlateType; |
| | | char platenumber[20]; //车牌号码 |
| | | int iPlateConfidence; |
| | | int iCharNum; |
| | | int iCharConfidence[20]; |
| | | }cPlateInfo; |
| | | |
| | | typedef struct _cVehicleITSResult { |
| | | int iPlateFlag; //是否识别到车牌 |
| | | cPlateInfo plateInfo; //车牌信息 |
| | | cRECT plateRect; //车牌位置 |
| | | cRECT tempVehicleRect; //车辆位置 |
| | | |
| | | char tempVehicleType[1024]; //车辆类型--总名称 jeep-大切诺基-2004 |
| | | char tempVehicleBrand[1024]; //车辆品牌 jeep |
| | | char tempVehicleSub[1024]; //车辆子型号 大切诺基 |
| | | char tempVehicleType1[1024]; //车辆类型 轿车 货车 客车 面包车 |
| | | |
| | | float fVDConf; //车辆检测置信度 |
| | | |
| | | float fConfdence; //车辆类型置信度 |
| | | int iVehicleSubModel; //车型名称索引 |
| | | int eVehicleBright; //车辆深浅色 |
| | | int eVehicleColor1; //车身主颜色 |
| | | int eVehicleColor2; //车身辅颜色 |
| | | |
| | | unsigned char*pCaptureImage; //视频模式识别下抓拍的图片数据 |
| | | int iImageWidth; //视频模式下抓拍图像宽度 |
| | | int iImageHeight; //视频模式下抓拍图像高度 |
| | | |
| | | }cVehicleITSResult; |
| | | |
| | | #endif |