1、关闭了延时删除感知车辆
2、增加了地图渲染帧日志
3、升级OBU-sdk

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2021-12-07 20:30:08 +08:00
parent 2a0c4ed7a7
commit c3f9ad1704
4 changed files with 6 additions and 5 deletions

View File

@@ -155,9 +155,9 @@ public class IdentifyDataDrawer extends BaseDrawer {
while (iterator.hasNext()) {
TrafficData result = iterator.next();
long internal = result.getSatelliteTime() - getCurSatelliteTime();
if (internal > 3000) { //防止帧率过低导致误删除上一个节点对象,从而出现跳跃现象
// if (internal > 3000) { //防止帧率过低导致误删除上一个节点对象,从而出现跳跃现象
iterator.remove();
}
// }
}
}