-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobj_detector.doctor.toml
More file actions
83 lines (66 loc) · 2.24 KB
/
obj_detector.doctor.toml
File metadata and controls
83 lines (66 loc) · 2.24 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
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
74
75
76
77
78
79
80
81
#ROS package you are documenting
package_name = "obj_detector"
repo = "https://github.com/ISC-Project-Phoenix/obj_detector"
#You can have multiple nodes in one package
[[nodes]]
node_name = 'obj_detector'
#Relitive to this file
source_file = ['./src/obj_detector.cpp']
summary = '''
Cone object detection node. It takes depth images of orange cones and outputs points in 3d
where the center of the cone is.
'''
#Your published topics (optional)
[[nodes.publishes]]
name = '/object_poses'
description = '3d Pose of the detected cones. In the reference frame of the camera'
#Your subscribed topics (optional)
[[nodes.subscribes]]
name = '/camera/mid/rgb'
description = 'RGB images from the camera. Will be rectified.'
[[nodes.subscribes]]
name = '/camera/mid/depth'
description = 'Depth images from camera. Assumed rectified.'
[[nodes.subscribes]]
name = '/camera/mid/rgb/camera_info'
description = 'Rgb cameras camera info'
#Your node parameters (optional)
[[nodes.params]]
name = 'transport_type'
description = 'image_pipeline topic type for rgb. Defaults to raw'
#Your node parameters (optional)
[[nodes.params]]
name = 'debug'
description = 'Enables debug visualisations'
#Your node parameters (optional)
[[nodes.params]]
name = 'test_latency'
description = 'Prints e2e latency statistics if true'
[[nodes.params]]
name = 'camera_frame'
description = 'Frame the poses will be published from'
[[nodes]]
node_name = 'detection_cat'
#Relitive to this file
source_file = ['./src/DetectionCatNode_node.cpp']
summary = '''
Node that concatinates the detections of two detectors together, emulating one "big camera".
'''
#Your published topics (optional)
[[nodes.publishes]]
name = '/object_detection_cat'
description = 'Concatinated points, in the common frame and with overlapping detections removed.'
#Your subscribed topics (optional)
[[nodes.subscribes]]
name = '/object_detection1'
description = 'First detection source'
[[nodes.subscribes]]
name = '/object_detection2'
description = 'Second detection source'
#Your node parameters (optional)
[[nodes.params]]
name = 'common_frame'
description = 'Common frame to transform both topics into.'
[[nodes.params]]
name = 'overlap_tolerence'
description = 'Overlapping detections under distince tolerence will be combined into one.'