-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkinect_calibrate.launch
50 lines (36 loc) · 1.52 KB
/
kinect_calibrate.launch
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
40
41
42
43
44
45
46
47
48
49
50
<!--
Runs a Prosilica camera in streaming mode.
Change the ip_address to match your camera.
For help configuring your camera or determining its IP address, see
http://www.ros.org/wiki/prosilica_camera/Tutorials.
You can uncomment the viewer if you want to view the image stream.
-->
<launch>
<node name="calibrator" pkg="camera_calibration" type="cameracalibrator.py" args="--size 6x8 --square 0.0642" output="screen">
<remap from="image" to="/kinect_node/kinect_cam"/>
<!-- <remap from="camera" to="prosilica"/> -->
</node>
<!--
Uncomment below if you want to view the image stream on a monochrome
camera. (You will see the Bayer coded image on a color camera)
You will have to run the following command first:
$ rosmake image_view
-->
<!--
<node pkg="image_view" type="image_view" respawn="false" name="prosilica_viewer_mono">
<param name="autosize" type="bool" value="False" />
<param name="window_name" type="str" value="'Prosilica Camera (Mono)'" />
<remap from="image" to="prosilica/image_raw" />
</node>
-->
<!--
Uncomment below if you want to view the image stream on a color camera.
You will have to run the following command first:
$ rosmake image_view image_proc
-->
<node pkg="image_view" type="image_view" respawn="false" name="prosilica_viewer_color">
<param name="autosize" type="bool" value="False" />
<param name="window_name" type="str" value="'Kinect'" />
<remap from="image" to="kinect_node/kinect_cam" />
</node>
</launch>