Skip to content

Commit 8bb9622

Browse files
committed
Add SaveAreaMemory custom service
1 parent de17255 commit 8bb9622

File tree

5 files changed

+108
-3
lines changed

5 files changed

+108
-3
lines changed

.gitignore

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
devel/
2+
logs/
3+
build/
4+
log/
5+
install/
6+
bin/
7+
lib/
8+
msg_gen/
9+
srv_gen/
10+
msg/*Action.msg
11+
msg/*ActionFeedback.msg
12+
msg/*ActionGoal.msg
13+
msg/*ActionResult.msg
14+
msg/*Feedback.msg
15+
msg/*Goal.msg
16+
msg/*Result.msg
17+
msg/_*.py
18+
build_isolated/
19+
devel_isolated/
20+
21+
# Generated by dynamic reconfigure
22+
*.cfgc
23+
/cfg/cpp/
24+
/cfg/*.py
25+
26+
# Ignore generated docs
27+
*.dox
28+
*.wikidoc
29+
30+
# eclipse stuff
31+
.project
32+
.cproject
33+
34+
# qcreator stuff
35+
CMakeLists.txt.user
36+
37+
srv/_*.py
38+
*.pcd
39+
*.pyc
40+
qtcreator-*
41+
*.user
42+
43+
/planning/cfg
44+
/planning/docs
45+
/planning/src
46+
47+
*~
48+
49+
# Emacs
50+
.#*
51+
52+
# Catkin custom files
53+
CATKIN_IGNORE
54+
55+
# C++ objects and libs
56+
57+
*.slo
58+
*.lo
59+
*.o
60+
*.a
61+
*.la
62+
*.lai
63+
*.so
64+
*.dll
65+
*.dylib
66+
67+
# Qt-es
68+
69+
/.qmake.cache
70+
/.qmake.stash
71+
*.pro.user
72+
*.pro.user.*
73+
*.qbs.user
74+
*.qbs.user.*
75+
*.moc
76+
moc_*.cpp
77+
moc_*.h
78+
qrc_*.cpp
79+
ui_*.h
80+
Makefile*
81+
*build-*
82+
83+
# QtCreator
84+
85+
*.autosave
86+
87+
# QtCtreator Qml
88+
*.qmlproject.user
89+
*.qmlproject.user.*
90+
91+
# QtCtreator CMake
92+
CMakeLists.txt.user*
93+
94+
# VSCode
95+
.vscode
96+
97+
# TMP folders
98+
docker/tmp_sources

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The `zed_msgs` is a colcon package. It depends on the following ROS 2 packages:
4242

4343
Open a terminal, clone the repository, update the dependencies, and build the packages:
4444

45-
```
45+
```bash
4646
cd ~/catkin_ws/src
4747
git clone https://github.com/stereolabs/zed-ros2-interfaces.git
4848
cd ../
@@ -91,6 +91,7 @@ You can get more information by reading the [Stereolabs online documentation](ht
9191
- [SetROI](https://github.com/stereolabs/zed-ros2-interfaces/blob/master/srv/SetROI.srv)
9292
- [StartSvoRec](https://github.com/stereolabs/zed-ros2-interfaces/blob/master/srv/StartSvoRec.srv)
9393
- [SetSvoFrame.srv](https://github.com/stereolabs/zed-ros2-interfaces/blob/master/srv/SetSvoFrame.srv)
94+
- [SaveAreaMemory.srv](https://github.com/stereolabs/zed-ros2-interfaces/blob/master/srv/SaveAreaMemory.srv)
9495

9596
You can get more information by reading the [Stereolabs online documentation](https://www.stereolabs.com/docs/ros2/zed-node/#services)
9697

msg/Heartbeat.msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ uint32 camera_sn
1616
# data from an svo?
1717
bool svo_mode
1818

19-
#data from simulation?
19+
# data from simulation?
2020
bool simul_mode

msg/Object.msg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ bool skeleton_available
5050
# 0 -> POSE_18
5151
# 1 -> POSE_34
5252
# 2 -> POSE_38
53-
# 3 -> POSE_70
5453
int8 body_format
5554

5655
# 2D Bounding box projected to Camera image of the person head

srv/SaveAreaMemory.srv

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Save the current area memory to a file
2+
3+
# Path of an area localization file that describes the surroundings. Use ".area" extension.
4+
string area_file_path
5+
---
6+
bool success # indicate successful run of service
7+
string message # informational, e.g. for error messages

0 commit comments

Comments
 (0)