![]() |
ekf_state_est package from autonomous-systems repocommon_lib control custom_interfaces ekf_state_est eufs_msgs evaluator fs_msgs inspection launcher mocker_node pacsim pacsim_keys perception planning power_log |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | TODO: License declaration |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fs-feup/autonomous-systems.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-01-13 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- marhcouto
Authors
EKF State Estimation Package
Package Information
Description
The State Estimation module is responsible for the processing of the perception module and localisation sensors’ data and its transformation into useful information. In this case, the data is combined to generate the best estimates possible on the pose and speed of the vehicle and the location of the cones that delimit the track.
Folder Structure
- adapter_ekf_state_est: Adapters to change ros2 interfaces according to simulator or environment
-
kalman_filter: Extended Kalman Filter class, used for state estimation
- kalman_filter/data_association: Data Association class, used to associate observations to landmarks and determine which landmarks are new
- kalman_filter/motion_model: Motion Model class, used to predict the state based on previous states and measurements
- kalman_filter/observation_model: Observation Model class, used to correct the state based on observations
- ros_node: Node class
Launch Configurations
- eufs.launch.py: Launch file for the EUFS simulator
- pacsim.launch.py: Launch file for the PacSim simulator
Important Dependencies
How to Run
Install Dependencies
./dependencies_install.sh
Compiling
colcon build --packages-up-to ekf_state_est
Testing
colcon test --packages-select ekf_state_est # use event-handler=console_direct+ for imediate output
To check test results:
colcon test-result --all --verbose
or
source ./install/setup.bash # If in a new terminal
ros2 run ekf_state_est ekf_state_est_test
Running
Use a launch file:
source ./install/setup.bash # If in a new terminal
ros2 launch ekf_state_est eufs.launch.py
or run directly:
source ./install/setup.bash # If in a new terminal
ros2 run ekf_state_est ekf_state_est
Design
Below, some diagrams are presented that can illustrate the structure and behaviour of the program.
Behaviour
The control flow below illustrates briefly the flow of execution and information through the node, you can also checkout documentation pdf to get a better understanding.
The sequence diagrams below illustrate in greater detail the interactions between the components of the system in a normal use case.
- Information from localisation sensors is received in the adapter (the adapter is a layer for adaptation of the different environments the node runs in).
- LMNode (the localisation and mapping node) processes the information and requests execution of the prediction step to the Extended Kalman Filter cass (illustrated below).
- The Motion Model is used to utilize the Motion data to predict the change in state.
- The Motion Model is used to reaturn the G matrix (maps the transformation from the motion to the state)
- Get the noise matrix, required for the calculation of the predicted covariance matrix P.
- Compute predicted X and P.
- After the step, the pose and map are updated and published.
- When cone coordinates are published by perception, the LMNode receives them directly, executing the perception_callback.
- The node requests execution of the correction step to the EKF (more detail below). For every landmark (cone):
- Discovery is executed, checking if the observation corresponds to a new cone/landmark or one that already exists in the state vector (X)
- H (matrix that maps the transformation from the state to the observations), Q (2x2 matrix that encodes the perception’s noise) are requested to the Observation Model (class that encodes how perception data is interpreted).
- the kalman gain (K) is calculated (smart weight that controls in what extent observations contribute to the update of the state).
- the observation model is executed to obtain the z_hat, required for the calculation of the state.
- Compute X and P.
- The EKF updates the estimates and the node publishes them.
Structure
The node is composed by multiple classes. The diagram below illustrates roughly how they sit in the code structure. The main two are the LMNode, which is the class of the node, and the Extended Kalman Filter, which corresponds to the code of the implementation of the EKF SLAM.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
custom_interfaces | |
eufs_msgs | |
fs_msgs | |
common_lib | |
message_filters | |
pacsim | |
std_srvs | |
visualization_msgs |