-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli_note.txt
More file actions
39 lines (27 loc) · 995 Bytes
/
cli_note.txt
File metadata and controls
39 lines (27 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Build the package first
cd d:\vision
colcon build --packages-select vision
# Source the workspace
source install/setup.bash # Linux
# or
.\install\setup.ps1 # Windows PowerShell
# Launch everything!
ros2 launch vision sam_gazebo_complete.launch.py
-------------------------------------------------------------------------
# Custom configurations
ros2 launch vision sam_gazebo_complete.launch.py \
auto_process:=true \
processing_rate:=2.0 \
debug_visualization:=true \
gui:=true
# Headless mode (no GUI)
ros2 launch vision sam_gazebo_complete.launch.py gui:=false headless:=true
-------------------------------------------------------------------------
# In another terminal - check topics
ros2 topic list
# View the debug image with detected objects
ros2 run rqt_image_view rqt_image_view /vision/debug_image
# Manually trigger processing
ros2 service call /vision/process_scene std_srvs/srv/Trigger
# Check grasp poses
ros2 topic echo /vision/grasp_poses --once