Browse Source

EKF: Use last known position when resuming OF aiding

master
Paul Riseborough 8 years ago
parent
commit
21270bb06a
  1. 8
      EKF/control.cpp

8
EKF/control.cpp

@ -279,6 +279,13 @@ void Ekf::controlOpticalFlowFusion()
_state.pos(0) = 0.0f; _state.pos(0) = 0.0f;
_state.pos(1) = 0.0f; _state.pos(1) = 0.0f;
} else {
// set to the last known position
_state.pos(0) = _last_known_posNE(0);
_state.pos(1) = _last_known_posNE(1);
}
// reset the corresponding covariances // reset the corresponding covariances
// we are by definition at the origin at commencement so variances are also zeroed // we are by definition at the origin at commencement so variances are also zeroed
zeroRows(P,7,8); zeroRows(P,7,8);
@ -289,7 +296,6 @@ void Ekf::controlOpticalFlowFusion()
} }
} }
}
} else if (!(_params.fusion_mode & MASK_USE_OF)) { } else if (!(_params.fusion_mode & MASK_USE_OF)) {
_control_status.flags.opt_flow = false; _control_status.flags.opt_flow = false;

Loading…
Cancel
Save