Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Navigation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
Skills
Navigation
Merge requests
!53
Draft: Implement basic version of kalman filter for human tracking
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Implement basic version of kalman filter for human tracking
feature/implement-kalman-filter
into
dev
Overview
0
Commits
48
Pipelines
0
Changes
4
Closed
Corvin Navarro Ecker
requested to merge
feature/implement-kalman-filter
into
dev
2 years ago
Overview
0
Commits
48
Pipelines
0
Changes
4
Expand
Implement ukfm from armarx/RobotAPI/libraries
0
0
Merge request reports
Viewing commit
a37cb8bb
Prev
Next
Show latest version
4 files
+
178
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
a37cb8bb
Merge branch 'feature/move-system-models' into feature/implement-kalman-filter
· a37cb8bb
Tobias Gröger
authored
2 years ago
source/armarx/navigation/components/dynamic_scene_provider/test/kalmanFilterTest.cpp
0 → 100644
+
30
−
0
Options
/**
* This file is part of ArmarX.
*
* ArmarX is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* ArmarX is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Tobias Gröger ( tobias dot groeger at student dot kit dot edu )
* @date 2022
* @copyright http://www.gnu.org/licenses/gpl-2.0.txt
* GNU General Public License
*/
#define BOOST_TEST_MODULE Navigation::ArmarXLibraries::dynamic_scene_provicer
#define ARMARX_BOOST_TEST
#include
<armarx/navigation/Test.h>
BOOST_AUTO_TEST_CASE
(
kalmanFilterTest
)
{
BOOST_CHECK_EQUAL
(
true
,
true
);
}
Loading