0001-Added-VFOA-targets-including-the-probabilities.patch

Patch File - T. Dankert, 09/23/2014 04:00 PM

Download (1.09 KB)

View differences:

proto/sandbox/rst/hri/PersonHypothesis.proto
86 86
    // @unit(meter)
87 87
    // @constraint(value >= 0)
88 88
    optional float human_height = 45;
89

  
90
    /** 
91
     * Visual Focus of Attention of the person.
92
     */
93
    message VFOA {
94
        /**
95
         * String description of the target
96
         */
97
	required bytes vfoa_target = 1;
98
        /**
99
         * Probability of the target.
100
         */
101
	required float vfoa_prob = 2;
102
    }
103
    
104
    /**
105
     * List of the targets.
106
     */
107
    repeated VFOA vfoa = 49;
89 108
}
90
-