Skip to content

Commit d171f29

Browse files
author
Bruno DOKPOMIWA
committed
Add UKF (and UKF vs EKF) test and animation gif files
1 parent 05ace7e commit d171f29

File tree

4 files changed

+38
-0
lines changed

4 files changed

+38
-0
lines changed
4.98 MB
Loading
3.78 MB
Loading

test/test_ekf_vs_ukf_comparison.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"""
2+
Test of EKF vs UKF Localization Comparison Simulation
3+
4+
Author: Bruno DOKPOMIWA
5+
"""
6+
7+
from pathlib import Path
8+
import sys
9+
import pytest
10+
11+
sys.path.append(str(Path(__file__).absolute().parent) + "/../src/simulations/localization/ekf_vs_ukf_comparison")
12+
import ekf_vs_ukf_comparison
13+
14+
15+
def test_simulation():
16+
ekf_vs_ukf_comparison.show_plot = False
17+
18+
ekf_vs_ukf_comparison.main()
19+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"""
2+
Test of Localization and Path tracking Simulation by UKF and Pure pursuit
3+
4+
Author: Bruno DOKPOMIWA
5+
"""
6+
7+
from pathlib import Path
8+
import sys
9+
import pytest
10+
11+
sys.path.append(str(Path(__file__).absolute().parent) + "/../src/simulations/localization/unscented_kalman_filter_localization")
12+
import unscented_kalman_filter_localization
13+
14+
15+
def test_simulation():
16+
unscented_kalman_filter_localization.show_plot = False
17+
18+
unscented_kalman_filter_localization.main()
19+

0 commit comments

Comments
 (0)