From 09b376a190b5acb97cf601776bef3f021ad41e99 Mon Sep 17 00:00:00 2001 From: Birte Carlmeyer Date: Tue, 1 Dec 2015 14:54:44 +0100 Subject: [PATCH] extend face type --- proto/stable/rst/vision/Face.proto | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/proto/stable/rst/vision/Face.proto b/proto/stable/rst/vision/Face.proto index bbb3f49..008de95 100644 --- a/proto/stable/rst/vision/Face.proto +++ b/proto/stable/rst/vision/Face.proto @@ -25,4 +25,33 @@ message Face { // @unit(TODO) optional double confidence = 2; + /** + * If this is true, the person looks straight into the camera. + */ + optional bool is_mutual_gaze = 3; + + /** + * If this is true, the eyelids are closed. + */ + optional bool is_lid_close = 4; + + /** + * Indecates how much the eyelids are closed. 0 means that the eyelids are + * completly open and 1 that the eylids are completly closed. + */ + // @constraint(0 <= value <= 1) + optional double eye_lid_classification = 5; + + /** + * Horizontal gaze estimation angle in degrees. A relative rotation from the + * default gaze when the person looks straight into the camera. + */ + optional double horizontal_gaze_estimation = 6; + + /** + * Vertical gaze estimation angle in degrees. A relative rotation from the + * default gaze when the person looks straight into the camera. + */ + optional double vertical_gaze_estimation = 7; + } -- 1.9.1