Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Merge requests
!497
euROBIN
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
euROBIN
eurobin_nancy
into
master
Overview
0
Commits
9
Pipelines
8
Changes
1
Merged
Fabian Reister
requested to merge
eurobin_nancy
into
master
4 months ago
Overview
0
Commits
9
Pipelines
8
Changes
1
Expand
KnownGraspProviderSegment: fix: if robot name consists of robot + hand, split and use only robot name
ArticulatedObjectWriter: storing with is_static=True (optional)
Coloring of FamiliarObject BB based on confidence
/cc
@hyseni
Edited
3 months ago
by
Fabian Reister
0
0
Merge request reports
Viewing commit
e5544d4d
Prev
Next
Show latest version
1 file
+
0
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e5544d4d
cleanup
· e5544d4d
Fabian Reister
authored
3 months ago
source/RobotAPI/libraries/armem_objects/client/articulated_object/ArticulatedObjectReader.cpp
+
0
−
39
Options
@@ -56,45 +56,6 @@ namespace armarx::armem::articulated_object
obj
->
setType
(
typeName
);
return
obj
;
// const auto descriptions = queryDescriptions(timestamp, providerName);
// ARMARX_INFO << "Found " << descriptions.size() << " articulated object descriptions";
// for (const auto& desc : descriptions)
// {
// ARMARX_INFO << "- " << desc.name;
// }
// const auto it = std::find_if(
// descriptions.begin(),
// descriptions.end(),
// [&](const armem::articulated_object::ArticulatedObjectDescription& desc) -> bool
// { return desc.name == typeName; });
// if (it == descriptions.end())
// {
// ARMARX_WARNING << "Description for articulate object with type <" << typeName
// << "> not (yet) available!";
// return nullptr;
// }
// ARMARX_DEBUG << "Description for articulate object with type <" << typeName
// << "> available!";
// auto obj = VirtualRobot::RobotIO::loadRobot(it->xml.toSystemPath(), loadMode);
// if (not obj)
// {
// ARMARX_WARNING << "Failed to load description for articulated object <" << typeName
// << ">!";
// return nullptr;
// }
// obj->setName(instanceName);
// obj->setType(it->name);
// return obj;
}
bool
Loading