File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed
packee_vision/packee_vision/launch Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ using PackingCompleteMsg = shopee_interfaces::msg::PackeePackingComplete;
2020using VerifyPackingComplete = shopee_interfaces::srv::PackeeVisionVerifyPackingComplete;
2121using RobotStatusMsg = shopee_interfaces::msg::PackeeRobotStatus;
2222using BppStart = shopee_interfaces::srv::PackeeVisionBppStart;
23- using BppComplete = shopee_interfaces::srv::PackeeVisionBppComplete ;
23+ using BppComplete = shopee_interfaces::srv::VisionCheckCartPresence ;
2424using StartMtc = shopee_interfaces::srv::PackeeMainStartMtc;
2525using ArmPackingComplete = shopee_interfaces::srv::PackeeArmPackingComplete;
2626using SequenceMsg = shopee_interfaces::msg::Sequence;
Original file line number Diff line number Diff line change 1+ from launch import LaunchDescription
2+ from launch_ros .actions import Node
3+
4+ def generate_launch_description ():
5+ return LaunchDescription ([
6+ Node (
7+ package = 'packee_vision' ,
8+ executable = 'check_cart_presence' ,
9+ name = 'check_cart_presence' ,
10+ output = 'screen'
11+ ),
12+ Node (
13+ package = 'packee_vision' ,
14+ executable = 'detect_products_in_cart1' ,
15+ name = 'detect_products_in_cart1' ,
16+ output = 'screen'
17+ ),
18+ Node (
19+ package = 'packee_vision' ,
20+ executable = 'detect_products_in_cart2' ,
21+ name = 'detect_products_in_cart2' ,
22+ output = 'screen'
23+ ),
24+ Node (
25+ package = 'packee_vision' ,
26+ executable = 'verify_packing_complete' ,
27+ name = 'verify_packing_complete' ,
28+ output = 'screen'
29+ )
30+ ])
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ int32 order_id
33int32 expected_product_id
44---
55bool success
6- shopee_interfaces/DetectedProduct [] products
7- int32 total_detected
6+ shopee_interfaces/Pose6D current_pose
7+ shopee_interfaces/Pose6D target_pose
88string message
You can’t perform that action at this time.
0 commit comments