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
3b9b0506
Commit
3b9b0506
authored
3 years ago
by
Fabian Reister
Browse files
Options
Downloads
Patches
Plain Diff
occupancy grid types
parent
b1c7ff63
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!170
ArMem Viewer: Resolve Memory IDs
,
!164
Feature/armem robot vision (previously armem_robot_mapping)
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/RobotAPI/libraries/armem_vision/aron/OccupancyGrid.xml
+30
-0
30 additions, 0 deletions
...ce/RobotAPI/libraries/armem_vision/aron/OccupancyGrid.xml
source/RobotAPI/libraries/armem_vision/types.h
+16
-2
16 additions, 2 deletions
source/RobotAPI/libraries/armem_vision/types.h
with
46 additions
and
2 deletions
source/RobotAPI/libraries/armem_vision/aron/OccupancyGrid.xml
0 → 100644
+
30
−
0
View file @
3b9b0506
<!--Some fancy comment -->
<?xml version="1.0" encoding="UTF-8" ?>
<AronTypeDefinition>
<CodeIncludes>
</CodeIncludes>
<AronIncludes>
</AronIncludes>
<GenerateTypes>
<Object
name=
'armarx::armem::arondto::OccupancyGrid'
>
<ObjectChild
key=
'resolution'
>
<float
/>
</ObjectChild>
<ObjectChild
key=
'frame'
>
<string
/>
</ObjectChild>
<ObjectChild
key=
'pose'
>
<Pose
/>
</ObjectChild>
<!--
<ObjectChild key='grid'>
<NdArray />
</ObjectChild> -->
</Object>
</GenerateTypes>
</AronTypeDefinition>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
source/RobotAPI/libraries/armem_
robot_mapping
/types.h
→
source/RobotAPI/libraries/armem_
vision
/types.h
+
16
−
2
View file @
3b9b0506
...
...
@@ -21,10 +21,12 @@
#pragma once
#include
<vector>
#include
<RobotAPI/libraries/armem/core/Time.h>
#include
<RobotAPI/interface/units/LaserScannerUnit.h>
namespace
armarx
namespace
armarx
::
armem
{
struct
SensorHeader
...
...
@@ -40,4 +42,16 @@ namespace armarx
LaserScan
data
;
};
}
// namespace armarx
struct
OccupancyGrid
{
float
resolution
;
std
::
string
frame
;
Eigen
::
Affine3f
pose
;
using
Grid
=
std
::
vector
<
std
::
vector
<
float
>>
;
Grid
grid
;
};
}
// namespace armarx::armem
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