-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* started on new IMM filter * more changes... * progress * made changes outlined in @chrstrom's PR review * Committing clang-format changes * started on new IMM filter * more changes... * progress * changed state name system. Almost compiles * Added ostream operator for MultivarGauss. * added support for specifying min and max state values * rebased from main * fixed size error in imm mixing * Committing clang-format changes * todo: pass state_names_ to mixing in imm filter * imm filter done! * mixing doesn't work as expectd * fixed imm mixing probs calculation * updated documentation * updated documentation * Update documentation * updated readmes * fixed readme * changed DynMod to DynModPtr across the package * fixed model getters in imm model * fixed const get_model of imm * change gnuplot enable to check value of define * created classes for types based on macros * refactored ekf * started changing all the types * Changed all except imm test * Finished converting all types. All tests pass * made a concept to check for matrix sizes * Removed all signs of the old DynModI and SensModI stuff * refactored ekf and ukf to not be dependent on having sizes defined * refactored imm model and filter to utilize ekf and ukf changes * try to make gh action use gcc 13 * fixed include and readme --------- Co-authored-by: Clang Robot <[email protected]>
- Loading branch information
1 parent
a7f4ce0
commit 49d5ab8
Showing
38 changed files
with
2,343 additions
and
1,091 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,15 @@ jobs: | |
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: ${{ matrix.ros_distribution }} | ||
- name: Use gcc 13 and g++ 13 | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y software-properties-common | ||
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-13 g++-13 | ||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13 | ||
sudo update-alternatives --config gcc | ||
- name: Build and test ROS 2 packages | ||
uses: ros-tooling/[email protected] | ||
id: action_ros_ci_step | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
.vscode | ||
.vscode | ||
build/* | ||
install/* | ||
log/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Vortex VKF | ||
## Introduction | ||
This is a C++ library for state estimation. | ||
This is a C++ library for state estimation. VKF stands for Visual Kalman Filter which is a stupid and misleading name | ||
|
||
## Packages | ||
### vortex-filtering | ||
Currently, it has a pure C++ implementation of the Unscented Kalman Filter (UKF) and the Extended Kalman Filter (EKF) as well as model | ||
[More info](vortex-filtering/README.md) | ||
|
||
- [vortex-filtering](vortex-filtering/README.md) | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.