predict the next state for initialization, order is the same as for Evaluate() */
| 195 | |
| 196 | /** predict the next state for initialization, order is the same as for Evaluate() */ |
| 197 | void predict(const std::vector<double*> &StatePointers) const |
| 198 | { |
| 199 | OdometryModel6DOF<double>::applyForward(StatePointers[0], |
| 200 | StatePointers[1], |
| 201 | StatePointers[2], |
| 202 | StatePointers[3], |
| 203 | this->_MeasurementVector.head(3), |
| 204 | this->_MeasurementVector.tail(3), |
| 205 | this->_DeltaTime); |
| 206 | } |
| 207 | }; |
| 208 | |
| 209 | template<typename ErrorType> |
nothing calls this directly
no outgoing calls
no test coverage detected