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
!55
Draft: Implement human grouping
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Implement human grouping
implement-human-groups
into
dev
Overview
0
Commits
63
Pipelines
1
Changes
3
Open
Timo Weberruß
requested to merge
implement-human-groups
into
dev
2 years ago
Overview
0
Commits
63
Pipelines
1
Changes
3
Expand
Closes
#34
Edited
2 years ago
by
Timo Weberruß
0
0
Merge request reports
Viewing commit
ac6d045e
Prev
Next
Show latest version
3 files
+
48
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
ac6d045e
Add ConvexHullGenerator
· ac6d045e
Timo Weberruß
authored
2 years ago
source/armarx/navigation/human/CMakeLists.txt
+
34
−
4
Options
@@ -18,6 +18,12 @@ armarx_add_library(teb_human
types.cpp
aron_conversions.cpp
ProxemicZoneCreator.cpp
HumanGrouper.cpp
EuclideanDistance.cpp
OrientationDistance.cpp
CombinedDistance.cpp
ConvexHullGenerator.cpp
MovementDistance.cpp
HumanSystemModel.cpp
UnscentedKalmanFilter_impl.cpp
HumanTracker.cpp
@@ -27,6 +33,14 @@ armarx_add_library(teb_human
aron_conversions.h
shapes.h
ProxemicZoneCreator.h
HumanGrouper.h
DistanceFunction.h
EuclideanDistance.h
OrientationDistance.h
CombinedDistance.h
GroupShapeGenerator.h
ConvexHullGenerator.h
MovementDistance.h
HumanSystemModel.h
HumanTracker.h
HumanFilter.h
@@ -100,8 +114,24 @@ armarx_add_test(human_tracker_test
TEST_FILES
test/human_tracker_test.cpp
DEPENDENCIES
ArmarXCore
armarx_navigation::core
armarx_navigation::teb_human
range-v3::range-v3
PUBLIC
ArmarXCore
armarx_navigation::core
armarx_navigation::teb_human
PRIVATE
range-v3::range-v3
)
armarx_add_test
(
human_test
TEST_FILES
test/human_test.cpp
DEPENDENCIES
PUBLIC
ArmarXCore
armarx_navigation::core
armarx_navigation::teb_human
PRIVATE
range-v3::range-v3
)
Loading