No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

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

TODO: Package description

Additional Links

No additional links.

Maintainers

  • marhcouto

Authors

No additional 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

Launch Configurations

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.

Control Flow Diagram

The sequence diagrams below illustrate in greater detail the interactions between the components of the system in a normal use case.

Sequence Diagram

  1. Information from localisation sensors is received in the adapter (the adapter is a layer for adaptation of the different environments the node runs in).
  2. LMNode (the localisation and mapping node) processes the information and requests execution of the prediction step to the Extended Kalman Filter cass (illustrated below).
    1. The Motion Model is used to utilize the Motion data to predict the change in state.
    2. The Motion Model is used to reaturn the G matrix (maps the transformation from the motion to the state)
    3. Get the noise matrix, required for the calculation of the predicted covariance matrix P.
    4. Compute predicted X and P.
  3. After the step, the pose and map are updated and published.

Sequence Diagram Part 2

  1. When cone coordinates are published by perception, the LMNode receives them directly, executing the perception_callback.
  2. The node requests execution of the correction step to the EKF (more detail below). For every landmark (cone):
    1. Discovery is executed, checking if the observation corresponds to a new cone/landmark or one that already exists in the state vector (X)
    2. 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).
    3. the kalman gain (K) is calculated (smart weight that controls in what extent observations contribute to the update of the state).
    4. the observation model is executed to obtain the z_hat, required for the calculation of the state.
    5. Compute X and P.
  3. The EKF updates the estimates and the node publishes them.

Sequence Diagram Part 3

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.

Class Diagram

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged ekf_state_est at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.