Skip to content
Snippets Groups Projects
Commit a818cb35 authored by Tobias Gröger's avatar Tobias Gröger
Browse files

Setup of new library human

parent 4db8fdb7
No related branches found
No related tags found
2 merge requests!38human tracker skeleton,!28Draft: Dev -> Main
This commit is part of merge request !38. Comments created here will be created in the context of that merge request.
......@@ -15,6 +15,7 @@ add_subdirectory(location)
add_subdirectory(memory)
add_subdirectory(server)
add_subdirectory(platform_controller)
add_subdirectory(human)
# Components.
add_subdirectory(components)
......
armarx_add_aron_library(human_aron
ARON_FILES
)
armarx_add_library(human
DEPENDENCIES_PUBLIC
armarx_navigation::core
DEPENDENCIES_PRIVATE
SOURCES
#types.cpp
HEADERS
types.h
)
/**
* 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
*/
#pragma once
#include <SimoxUtility/shapes.h>
#include <armarx/navigation/core/basic_types.h>
namespace armarx::navigation::human
{
struct Human
{
core::Pose2D global_T_human;
Eigen::Vector2f linearVelocity;
};
struct HumanGroup
{
std::vector<Eigen::Vector2f> vertices;
std::vector<Human> humans;
};
} // namespace armarx::navigation::human
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment