0001-extend-face-type.patch

B. Carlmeyer, 12/01/2015 02:58 PM

Download (1.51 KB)

View differences:

proto/stable/rst/vision/Face.proto
25 25
    // @unit(TODO)
26 26
    optional double confidence = 2;
27 27

  
28
    /**
29
     *  If this is true, the person looks straight into the camera.
30
     */
31
    optional bool is_mutual_gaze = 3;
32

  
33
    /**
34
     * If this is true, the eyelids are closed.
35
     */
36
    optional bool is_lid_close = 4;
37

  
38
    /**
39
     * Indecates how much the eyelids are closed. 0 means that the eyelids are
40
     * completly open and 1 that the eylids are completly closed.
41
     */
42
    // @constraint(0 <= value <= 1)
43
    optional double eye_lid_classification = 5;
44

  
45
    /**
46
     * Horizontal gaze estimation angle in degrees. A relative rotation from the
47
     * default gaze when the person looks straight into the camera.
48
     */
49
    optional double horizontal_gaze_estimation = 6;
50

  
51
    /**
52
     * Vertical gaze estimation angle in degrees. A relative rotation from the
53
     * default gaze when the person looks straight into the camera.
54
     */
55
    optional double vertical_gaze_estimation = 7;
56

  
28 57
}
29
-