0001-add-new-FaceWithGaze-type.patch

B. Carlmeyer, 12/10/2015 10:48 AM

Download (1.6 KB)

View differences:

proto/sandbox/rst/vision/FaceWithGaze.proto
1
package rst.vision;
2

  
3
import "rst/vision/Face.proto";
4

  
5
option java_outer_classname = "FaceWithGazeType";
6

  
7
/**
8
 * An object of this type represents a human face detected in an image including
9
 * gaze informations.
10
 *
11
 * @author "Birte Carlmeyer" <bcarlmey@techfak.uni-bielefeld.de>
12
 */
13
message FaceWithGaze {
14

  
15
    /**
16
     * The region of the image which corresponds to the face.
17
     */
18
    required Face region = 1;
19

  
20
    /**
21
     * If this is true, the eyelids are closed.
22
     */
23
    optional bool lid_closed = 2;
24

  
25
    /**
26
     * Horizontal gaze estimation angle. A relative rotation from the
27
     * default gaze when the person looks straight into the camera.
28
     */
29
    // @unit(radian)
30
    optional double horizontal_gaze_estimation = 3;
31

  
32
    /**
33
     * Vertical gaze estimation angle. A relative rotation from the
34
     * default gaze when the person looks straight into the camera.
35
     */
36
    // @unit(radian)
37
    optional double vertical_gaze_estimation = 4;
38

  
39
}
0
-