Skip to content
Snippets Groups Projects
Commit 969d076b authored by Fabian Reister's avatar Fabian Reister
Browse files

fixing property name and segment names

parent 7fbfc3d2
No related branches found
No related tags found
1 merge request!139adding HumanPoseReader and native types for human pose
......@@ -53,7 +53,7 @@ namespace armarx::armem::human::client
qb
.coreSegments().withName(properties().coreSegmentName)
.providerSegments().withName(query.providerName)
.entities().all()
.entities().withName("3DDetections")
.snapshots().beforeOrAtTime(query.timestamp);
// clang-format on
......@@ -63,13 +63,13 @@ namespace armarx::armem::human::client
std::string
Reader::propertyPrefix() const
{
return "mem.vision.occupancy_grid.";
return "mem.human.pose.";
}
armarx::armem::client::util::SimpleReaderBase::Properties
Reader::defaultProperties() const
{
return {.memoryName = "Vision", .coreSegmentName = "OccupancyGrid"};
return {.memoryName = "Human", .coreSegmentName = "Pose"};
}
std::vector<HumanPose>
......
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