3 #include <Eigen/Geometry>
5 #include <SimoxUtility/color/Color.h>
6 #include <SimoxUtility/color/cmaps/colormaps.h>
7 #include <SimoxUtility/math/pose.h>
8 #include <SimoxUtility/math/rescale.h>
30 defs->optional(
enabled, prefix +
"enabled",
"Enable or disable visualization of objects.");
31 defs->optional(
frequencyHz, prefix +
"frequenzyHz",
"Frequency of visualization.");
33 prefix +
"inGlobalFrame",
34 "If true, show global poses. If false, show poses in robot frame.");
35 defs->optional(
alpha, prefix +
"alpha",
"Alpha of objects (1 = solid, 0 = transparent).");
37 prefix +
"alphaByConfidence",
38 "If true, use the pose confidence as alpha (if < 1.0).");
39 defs->optional(
oobbs, prefix +
"oobbs",
"Enable showing oriented bounding boxes.");
40 defs->optional(
sizePixel, prefix +
"sizePixel",
"Pixel size of point cloud.");
47 defs->optional(
objectFrames, prefix +
"objectFrames",
"Enable showing object frames.");
51 prefix +
"maxAgeSeconds",
52 "Maximum age in seconds for visualization.");
57 const std::map<std::string, std::vector<armarx::armem::arondto::FamiliarObjectInstance>>&
58 familiarObjectsByProvider)
62 const auto isWithinTimeFrame =
64 this](
const armarx::armem::arondto::FamiliarObjectInstance& instance) ->
bool
66 const auto dt = timestamp - instance.timestamp;
72 std::vector<viz::Layer> layers;
74 for (
const auto& [providerName, familiarObjects] : familiarObjectsByProvider)
76 auto layerPose =
arviz.
layer(
"familiar_objects/pose/" + providerName);
77 auto layerPointCloud =
arviz.
layer(
"familiar_objects/points/" + providerName);
78 auto layerLabels =
arviz.
layer(
"familiar_objects/labels/" + providerName);
79 auto layerBox =
arviz.
layer(
"familiar_objects/box/" + providerName);
81 auto confidenceCmap = simox::color::cmaps::viridis();
82 confidenceCmap.set_vlimits(0, 1);
84 for (
const auto& familiarObject : familiarObjects)
86 if (not isWithinTimeFrame(familiarObject))
92 fromAron(familiarObject.objectID, objectId);
94 if (familiarObject.poseGlobal.has_value())
98 auto pose =
viz::Pose(objectId.
str()).pose(familiarObject.poseGlobal->pose);
102 const int alpha =
static_cast<int>(255 * this->
alpha);
107 .pointCloud(familiarObject.points)
108 .pose(familiarObject.poseGlobal->pose);
111 layerPointCloud.add(points);
116 Eigen::Isometry3f pose{familiarObject.poseGlobal->pose};
120 pose.translation().z() += 200;
122 const std::string name = familiarObject.objectID.className +
"/" +
123 familiarObject.objectID.instanceName;
125 layerLabels.add(
viz::Text(name).pose(pose).scale(20));
131 const Eigen::Isometry3f global_T_obj{familiarObject.poseGlobal->pose};
133 obj_T_bb.translation() = familiarObject.bounding_box.center;
135 if (familiarObject.boundingBoxOrientation.has_value())
138 familiarObject.boundingBoxOrientation->toRotationMatrix();
141 const Eigen::Isometry3f global_T_bb = global_T_obj * obj_T_bb;
144 box.pose(global_T_bb.matrix());
145 box.size(familiarObject.bounding_box.extents);
147 auto color = confidenceCmap.at(familiarObject.confidence);
156 layers.push_back(layerPose);
157 layers.push_back(layerPointCloud);
158 layers.push_back(layerLabels);
159 layers.push_back(layerBox);