-
Notifications
You must be signed in to change notification settings - Fork 1
/
closest-blob.xml
74 lines (66 loc) · 2.25 KB
/
closest-blob.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
74
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="yarpmanifest.xsl"?>
<module>
<name>closest-blob</name>
<doxygen-group></doxygen-group>
<description> Extracts brightest blob in a sequence of disparity images</description>
<copypolicy>Released under the terms of the GNU GPL v2.0</copypolicy>
<version>1.0</version>
<description-long>
This module takes as input a grayscale image and outputs the brightest blob both as a
binary image and as an extracted rectangular crop around it, plus the blob centroid's coordinates and approximated area.
</description-long>
<arguments>
<param default="closest-blob" desc="select the current context.">context</param>
<param default="config.ini" desc="configuration file name.">from</param>
</arguments>
<authors>
<author email="vadim.tikhanoff@iit.it"> Vadim Tikhanoff </author>
<author email="tanis.mar@iit.it"> Tanis Mar</author>
</authors>
<data>
<input>
<type>yarp::sig::Image</type>
<port carrier="udp">/closest-blob/disparity:i</port>
<description>
Gets the disparity input stream from the datasetplayer.
</description>
</input>
<input>
<type>yarp::sig::Image</type>
<port carrier="udp">/closest-blob/image:i</port>
<description>
Gets the camera input stream from the datasetplayer.
</description>
</input>
<output>
<type>yarp::sig::Image</type>
<port carrier="udp">/closest-blob/image:o</port>
<description>
Streams out the image of selected blob.
</description>
</output>
<output>
<type>yarp::sig::Image</type>
<port carrier="udp">/closest-blob/crop:o</port>
<description>
Streams out the cropped image of selected blob.
</description>
</output>
<output>
<type>yarp::sig::Bottle</type>
<port carrier="udp">/closest-blob/target:o</port>
<description>
Coordinates of the TL and BR points of the ROI around the selected blob
</description>
</output>
</data>
<services>
<server>
<type>closestBlob_IDL</type>
<idl>closest-blob.thrift</idl>
<port>/closest-blob/rpc</port>
<description>service port</description>
</server>
</services>
</module>