-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodelet_plugins.xml
73 lines (65 loc) · 2.35 KB
/
nodelet_plugins.xml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<library path="lib/libdepth_image_proc">
<class name="depth_image_proc/convert_metric"
type="depth_image_proc::ConvertMetricNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to convert raw uint16 depth image in mm to float depth image in m.
</description>
</class>
<class name="depth_image_proc/disparity"
type="depth_image_proc::DisparityNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to convert depth image to disparity image.
</description>
</class>
<class name="depth_image_proc/point_cloud_xyz"
type="depth_image_proc::PointCloudXyzNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to convert depth image to XYZ point cloud.
</description>
</class>
<class name="depth_image_proc/point_cloud_xyzrgb"
type="depth_image_proc::PointCloudXyzrgbNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to combine registered depth image and RGB image into XYZRGB point cloud.
</description>
</class>
<class name="depth_image_proc/point_cloud_xyzi"
type="depth_image_proc::PointCloudXyziNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to combine registered depth image and intensity image into XYZI point cloud.
</description>
</class>
<class name="depth_image_proc/point_cloud_xyz_radial"
type="depth_image_proc::PointCloudXyzRadialNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to convert an Radial depth map to a point.
</description>
</class>
<class name="depth_image_proc/point_cloud_xyzi_radial"
type="depth_image_proc::PointCloudXyziRadialNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to convert an Radial depth and intensity map to a point.
</description>
</class>
<class name="depth_image_proc/register"
type="depth_image_proc::RegisterNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to create a depth image registered to another camera frame.
</description>
</class>
<class name="depth_image_proc/crop_foremost"
type="depth_image_proc::CropForemostNodelet"
base_class_type="nodelet::Nodelet">
<description>
Nodelet to crop a depth image from foremost depth to a specific range.
</description>
</class>
</library>