0008-replaced-rhc_direction-and-rbc_direction-with-a-bett.patch

L. Ziegler, 04/16/2014 06:55 PM

Download (1.66 KB)

View differences:

proto/sandbox/rst/hri/PersonHypothesis.proto
3 3
import "rst/math/Vec2DFloat.proto";
4 4
import "rst/vision/LocatedFace.proto";
5 5
import "rst/tracking/TrackingInfo.proto";
6
import "rst/hri/Body.proto";
6 7

  
7 8
option java_outer_classname = "PersonHypothesisType";
8 9

  
......
26 27
    optional vision.LocatedFace face = 3;
27 28

  
28 29
    /**
29
     * Direction of the human in a coordinate system the origin of
30
     * which is the robot's head.
31
     *
32
     * @todo "Rename this field to something more descriptive"
33
     */
34
    optional math.Vec2DFloat rhc_direction = 10;
35

  
36
    /**
37
     * Direction of the human in a coordinate system the origin of
38
     * which is the robot's body.
39
     *
40
     * @todo "Rename; see above."
30
     * Geometric properties of the person's body. This includes the person's
31
     * position in the world.
41 32
     */
42
    optional math.Vec2DFloat rbc_direction = 20;
33
    optional hri.Body body = 10;
43 34

  
44 35
    /**
45 36
     * Represents a person's age as a range. If the exact age is known, set
46
-