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
Commits
7a661313
Commit
7a661313
authored
3 years ago
by
Fabian Reister
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/armem/dev' into armem/dev
parents
c59124b3
304bc970
Branches
feat/revolute-head
Branches containing commit
No related tags found
1 merge request
!157
armem/dev => master
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scenarios/ArMemObjectMemory/config/ObjectMemory.cfg
+18
-2
18 additions, 2 deletions
scenarios/ArMemObjectMemory/config/ObjectMemory.cfg
source/RobotAPI/libraries/armem_objects/server/instance/Segment.h
+2
-1
2 additions, 1 deletion
...obotAPI/libraries/armem_objects/server/instance/Segment.h
with
20 additions
and
3 deletions
scenarios/ArMemObjectMemory/config/ObjectMemory.cfg
+
18
−
2
View file @
7a661313
...
...
@@ -215,6 +215,22 @@ ArmarX.AdditionalPackages = ArmarXObjects
# ArmarX.ObjectMemory.mem.articulated.inst.MaxHistorySize = -1
# ArmarX.ObjectMemory.mem.attachments.CoreSegmentName: Name of the object instance core segment.
# Attributes:
# - Default: Attachments
# - Case sensitivity: yes
# - Required: no
# ArmarX.ObjectMemory.mem.attachments.CoreSegmentName = Attachments
# ArmarX.ObjectMemory.mem.attachments.MaxHistorySize: Maximal size of object poses history (-1 for infinite).
# Attributes:
# - Default: -1
# - Case sensitivity: yes
# - Required: no
# ArmarX.ObjectMemory.mem.attachments.MaxHistorySize = -1
# ArmarX.ObjectMemory.mem.cls.CoreSegmentName: Name of the object clazz core segment.
# Attributes:
# - Default: Class
...
...
@@ -303,10 +319,10 @@ ArmarX.AdditionalPackages = ArmarXObjects
# ArmarX.ObjectMemory.mem.inst.MaxHistorySize: Maximal size of object poses history (-1 for infinite).
# Attributes:
# - Default:
-1
# - Default:
25
# - Case sensitivity: yes
# - Required: no
# ArmarX.ObjectMemory.mem.inst.MaxHistorySize =
-1
# ArmarX.ObjectMemory.mem.inst.MaxHistorySize =
25
# ArmarX.ObjectMemory.mem.inst.calibration.offset: Offset for the node to be calibrated.
...
...
This diff is collapsed.
Click to expand it.
source/RobotAPI/libraries/armem_objects/server/instance/Segment.h
+
2
−
1
View file @
7a661313
...
...
@@ -159,7 +159,8 @@ namespace armarx::armem::server::obj::instance
struct
Properties
{
std
::
string
coreSegmentName
=
"Instance"
;
long
maxHistorySize
=
-
1
;
// -1 would be infinite, but this can let the RAM grow quickly.
long
maxHistorySize
=
25
;
bool
discardSnapshotsWhileAttached
=
true
;
};
Properties
p
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment