-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.launch
More file actions
executable file
·28 lines (28 loc) · 1.17 KB
/
test.launch
File metadata and controls
executable file
·28 lines (28 loc) · 1.17 KB
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
<launch>
<!-- -->
<!-- barcode reader + drawer -->
<node name="barcode_node" pkg="nodelet" type="nodelet" args="manager" output="screen"/>
<!-- -->
<!-- barcode reader loader -->
<node name="barcode_reader_loader" pkg="nodelet" type="nodelet"
args="load barcode_reader/BarcodeReader barcode_node" output="screen">
<remap from="image_raw" to="image_raw"/>
<remap from="image_out" to="barcode_image"/>
<remap from="barcodes_out" to="barcode_data"/>
<param name="scan_interval" value="0.5"/>
<param name="republish_image" value="true"/>
</node>
<!-- -->
<!-- barcode drawer loader -->
<node name="barcode_drawer_loader" pkg="nodelet" type="nodelet"
args="load object_drawer/ObjectDrawer barcode_node" output="screen">
<remap from="image_raw" to="barcode_image"/>
<remap from="objects_in" to="barcode_data"/>
<remap from="image_out" to="annotated_image"/>
</node>
<!-- -->
<!-- detection result viewer -->
<node name="barcode_view" pkg="image_view" type="image_view" output="screen">
<remap from="image" to="annotated_image"/>
</node>
</launch>