0002-added-list-version-of-TrackedClassifiedRegion3D.patch

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

Download (1.53 KB)

View differences:

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

  
3
import "rst/tracking/TrackedClassifiedRegion3D.proto";
4

  
5
option java_outer_classname = "TrackedClassifiedRegions3DType";
6

  
7
/**
8
 * A collection of @ref .TrackedClassifiedRegion3D objects.
9
 *
10
 * Collecting multiple @ref .TrackedClassifiedRegion3D objects in a
11
 * single data structure is an easy way to express the fact that they
12
 * have been recorded at the same point in time.
13
 *
14
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
15
 */
16
message TrackedClassifiedRegions3D {
17

  
18
    /**
19
     * Empty collections of tracked regions are allowed but should
20
     * rarely be necessary.
21
     *
22
     * Order of regions is not significant since association of
23
     * tracked regions to tracked subjects is done via @ref
24
     * .regions.info.
25
     */
26
    repeated TrackedClassifiedRegion3D region = 1;
27
}
0
-