MCPcopy Create free account
hub / github.com/TUC-ProAut/libRSF / predict

Method predict

include/factors/OdometryFactor3D.h:197–206  ·  view source on GitHub ↗

predict the next state for initialization, order is the same as for Evaluate() */

Source from the content-addressed store, hash-verified

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>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected