Visual Servoing Platform
version 3.6.1 under development (2024-11-21)
|
Public Member Functions | |
vpProcessFunctor (const double &w) | |
vpColVector | processFunction (const vpColVector &x, const double &dt) |
void | setCommands (const vpColVector &u) |
As the state model {x, y, } does not contain any velocity information, it does not evolve without commands. Thus, we create a functor that will save the current command to use it in the process function to project a particle in time.
Definition at line 275 of file pf-nonlinear-complex-example.cpp.
|
inline |
Construct a new vp Process Functor object.
[in] | w | The length of the wheelbase. |
Definition at line 283 of file pf-nonlinear-complex-example.cpp.
|
inline |
Models the effect of the command on the state model.
[in] | x | The state model. x[0] = x ; x[1] = y ; x[2] = heading |
[in] | dt | The period. |
Definition at line 294 of file pf-nonlinear-complex-example.cpp.
|
inline |
Set the Commands object.
[in] | u | Set the commands of the current timestep. |
Definition at line 307 of file pf-nonlinear-complex-example.cpp.