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
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lennard Hofmann
RobotAPI
Commits
4fb829bf
Commit
4fb829bf
authored
3 years ago
by
Fabian Reister
Browse files
Options
Downloads
Plain Diff
Merge branch 'armem/dev' into feature/armem_robot_state_update
parents
0b0fbb28
7a661313
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
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 @
4fb829bf
...
...
@@ -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 @
4fb829bf
...
...
@@ -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