Skip to content
Snippets Groups Projects
Commit c2319aac authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Merge branch 'object-memory-ignore-objects-with-#' into 'master'

Ignore objects with class names starting with #

See merge request !390
parents 23965c8c f52e6973
No related branches found
No related tags found
1 merge request!390Ignore objects with class names starting with #
Pipeline #15627 failed
......@@ -1119,6 +1119,12 @@ namespace armarx::armem::server::obj::instance
for (const auto& object : scene.objects)
{
if (simox::alg::starts_with(object.className, "#"))
{
// marked to be ignored
continue;
}
const ObjectID classID = object.getClassID(objectFinder);
objpose::ObjectPose& pose = objectPoses.emplace_back();
......
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