0011-Added-new-type-LocatedFace.patch

L. Ziegler, 03/13/2014 04:56 PM

Download (1.13 KB)

View differences:

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

  
3
import "rst/vision/Face.proto";
4
import "rst/geometry/Translation.proto";
5

  
6
option java_outer_classname = "LocatedFaceType";
7

  
8
/**
9
 * This type extends the regular Face type with a 3D location.
10
 *
11
 * @author "Leon Ziegler" <lziegler@techfak.uni-bielefeld.de>
12
 */
13
message LocatedFace {
14

  
15
    /**
16
     * The face as a part of an image.
17
     */
18
    required vision.Face face = 1;
19

  
20
    /**
21
     * The 3d location of the face.
22
     */
23
    required geometry.Translation location = 2;
24
}
0
-