3 #include <SimoxUtility/color/Color.h>
4 #include <SimoxUtility/color/KellyLUT.h>
12 const std::string&
id,
18 .pose(locationGlobalPose)
26 const std::string&
id,
28 const Eigen::Vector3f& extends)
const
32 if (std::regex_match(
id,
matches, pattern))
34 const std::string& affordance_name =
matches[1];
35 unique_affordances.insert(affordance_name);
37 unique_affordances.find(affordance_name)) %
38 simox::color::KellyLUT::KELLY_COLORS_COLOR_BLIND.size();
40 .text(affordance_name)
41 .color(simox::color::Color::black())
43 .pose(locationGlobalPose));
46 .pose(locationGlobalPose)
48 .color(simox::color::KellyLUT::KELLY_COLORS_COLOR_BLIND.at(
index).with_alpha(
55 .pose(locationGlobalPose)
63 const std::map<std::string, FramedLocationData>& locationData)
const
66 for (
auto& [
id,
data] : locationData)
68 if (
data.extents.has_value())
82 const std::string& layerName,
83 const std::map<std::string, Eigen::Matrix4f>& locationGlobalPoses)
const
86 for (
auto& [
id, pose] : locationGlobalPoses)
96 const std::string& layerName,
97 const std::map<std::string, std::pair<Eigen::Matrix4f, Eigen::Vector3f>>&
98 locationGlobalPosesAndExtends)
const
101 for (
auto& [
id, pair] : locationGlobalPosesAndExtends)
103 const auto& pose = pair.first;
104 const auto& extends = pair.second;