Skip to content
Snippets Groups Projects
Commit 4ee022c4 authored by Philip Scherer's avatar Philip Scherer
Browse files

ObjMemory,Segment: Remove uses of armem::fromIce

parent 5f895988
No related branches found
No related tags found
1 merge request!242Add Prediction Interface and linear position prediction model to Object Memory
......@@ -165,7 +165,7 @@ namespace armarx::armem::server::obj
GetActionsOutputSeq outputs;
for (const auto& input : inputs)
{
auto memoryID = fromIce<armem::MemoryID>(input.id);
auto memoryID = armarx::fromIce<armem::MemoryID>(input.id);
if (armem::contains(armem::MemoryID("Object", "Class"), memoryID)
and memoryID.hasEntityName() and not memoryID.hasGap())
{
......@@ -188,7 +188,7 @@ namespace armarx::armem::server::obj
for (const auto& input : inputs)
{
auto memoryID = fromIce<armem::MemoryID>(input.id);
auto memoryID = armarx::fromIce<armem::MemoryID>(input.id);
if (input.actionPath == ActionPath{"vis"})
{
if (armem::contains(armem::MemoryID("Object", "Class"), memoryID)
......
......@@ -149,7 +149,7 @@ namespace armarx::armem::server::obj::instance
stats.numUpdated = 0;
for (const objpose::data::ProvidedObjectPose& provided : providedPoses)
{
const Time timestamp = armem::fromIce<Time>(provided.timestamp);
const Time timestamp = armarx::fromIce<Time>(provided.timestamp);
// Check whether we have an old snapshot for this object.
std::optional<objpose::ObjectPose> previousPose;
......
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