balabala~~~

This commit is contained in:
wangcongtao
2020-11-01 10:30:25 +08:00
parent 58bb6f3833
commit 513952a709
35 changed files with 258 additions and 76 deletions

View File

@@ -11,12 +11,36 @@ public
*/
class ADASRecognizedListResult {
/**
* 识别物体类型
*/
public int type;
/**
* 识别物体唯一标识
*/
public String uuid;
/**
* 方向
*/
public double heading;
/**
* 速度
*/
public double speed;
/**
* x 轴距离
*/
public double distanceX;
/**
* y 轴距离
*/
public double distanceY;
/**
* 同一个uuid 1s内所对应的连续坐标
*/
public List< LatLon > latLonList;
public static class LatLon {

View File

@@ -9,17 +9,64 @@ public
*/
class ADASRecognizedResult {
/**
* 识别物体类型
*/
public int type;
/**
* 识别物体唯一标识
*/
public String uuid;
/**
* 红绿灯颜色
*/
public String color;
public String cardId;
/**
*
*/
public String carId;
/**
* 识别物体的纬度
*/
public double lat;
/**
* 识别物体的经度
*/
public double lon;
/**
* 朝向
*/
public double heading;
/**
* 系统时间
*/
public long systemTime;
/**
* 定位卫星时间
*/
public long satelliteTime;
/**
* 海拔
*/
public double alt;
/**
* 速度
*/
public double speed;
/**
* 莫顿码
*/
public long mortonCode;
}