更新:1、kalman_filter_init_2dots函数中量测噪声协方差矩阵R中R[1][0]赋值错误;
2、数据预处理中波位号判断规则修改; 3、数据预处理中增加点迹数量限制,避免超过数组上限; 4、Dot_Coh_TAS::dot_coh_tas_process中增加容器非空判断; 5、d_cal_with_doppler中计算雅可比矩阵改为用预测值计算; 6、tmp_track_to_trust_track中数组索引为负的问题修复; 7、tmp_track_to_trust_track中对容器push_back后在修改元素可能导致无法修改容器中的元素; 8、修改部分参数,适配机扫模式; Signed-off-by: waiwaylee <waiwaylee@foxmail.com>
This commit is contained in:
@@ -694,7 +694,7 @@ void Track_Init::tmp_track_to_trust_track(QVector<Trust_Track> *trust_track,
|
||||
Direction_Angle=atan2(Track_to_start[i][j].X[3],Track_to_start[i][j].X[1]);
|
||||
if(Direction_Angle<0)
|
||||
Direction_Angle=Direction_Angle+2*PI;
|
||||
Trust_Track_Output[*Trust_track_num_Output-1][j-1].Direction_Angle=Direction_Angle/PI*180;
|
||||
Trust_Track_Output[*Trust_track_num_Output-1][j].Direction_Angle=Direction_Angle/PI*180;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user