#include <cmath>
#include <boost/multi_index/mem_fun.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index_container.hpp>
#include <RobotAPI/libraries/core/FramedPose.h>
#include <VisionX/interface/components/OpenPoseEstimationInterface.h>
Go to the source code of this file.
|
using | IdNameMap = const std::map< unsigned int, std::string > & |
|
using | KeypointManagerPtr = std::shared_ptr< KeypointManager > |
|
using | KeypointObjectPtr = std::shared_ptr< KeypointObject > |
|
using | KeypointPtr = std::shared_ptr< Keypoint > |
|
using | KeypointSet = multi_index_container< KeypointPtr, indexed_by< ordered_unique< const_mem_fun< Keypoint, unsigned int, &Keypoint::getId > >, ordered_non_unique< const_mem_fun< Keypoint, std::string, &Keypoint::getName > > > > |
|
using | KeypointSetById = typename KeypointSet::nth_index< 0 >::type |
|
using | KeypointSetByName = typename KeypointSet::nth_index< 1 >::type |
|