0001-New-type-rst.hri.Head.patch

J. Moringen, 01/30/2017 02:49 PM

Download (1.18 KB)

View differences:

proto/sandbox/rst/hri/Head.proto
1
syntax = "proto2";
2

  
3
package rst.hri;
4

  
5
import "rst/geometry/BoundingBox3DFloat.proto";
6

  
7
option java_outer_classname = "HeadType";
8

  
9
/**
10
 * Geometric properties of a person's head (e.g. in a person-tracking
11
 * system).
12
 *
13
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
14
 * @author Rene Zorn <rzorn@techfak.uni-bielefeld.de>
15
 */
16
message Head {
17

  
18
    /**
19
     * Bounding box around the whole head.
20
     *
21
     * This is not necessarily aligned to location and orientation.
22
     */
23
    required geometry.BoundingBox3DFloat shape = 1;
24

  
25
}
0
-