0001-added-tracked-version-of-ClassifiedRegion3D.patch

L. Ziegler, 08/31/2015 11:07 AM

Download (1.6 KB)

View differences:

proto/sandbox/rst/tracking/TrackedClassifiedRegion3D.proto
1
package rst.tracking;
2

  
3
import "rst/tracking/TrackingInfo.proto";
4
import "rst/classification/ClassifiedRegion3D.proto";
5

  
6
option java_outer_classname = "TrackedClassifiedRegion3DType";
7

  
8
/**
9
 * A region in 3D space with tracking information and classification results.
10
 *
11
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
12
 */
13
message TrackedClassifiedRegion3D {
14

  
15
    /**
16
     * Tracking information such as identity of the subject being
17
     * tracked.
18
     */
19
    required TrackingInfo         info       = 1;
20

  
21
    /**
22
     * Region and class of the tracked subject identified by @ref .info in
23
     * three-dimensional space.
24
     */
25
    required classification.ClassifiedRegion3D region   = 2;
26

  
27
    /**
28
     * Confidence in the correctness of the value stored in @ref
29
     * .region.
30
     */
31
    // @constraint(0 <= value <= 1)
32
    required float                confidence = 3;
33
}
0
-