0002-Added-new-type-ClassifiedRegions3D.patch

L. Ziegler, 05/11/2014 02:55 PM

Download (1.13 KB)

View differences:

proto/sandbox/rst/classification/ClassifiedRegions3D.proto
1
package rst.classification;
2

  
3
import "rst/classification/ClassifiedRegion3D.proto";
4

  
5
option java_outer_classname = "ClassifiedRegions3DType";
6

  
7
/**
8
 * A set of 3D regions with classification results.
9
 *
10
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
11
 */
12
message ClassifiedRegions3D {
13

  
14
    /**
15
     * The set of regions.
16
     */
17
    repeated ClassifiedRegion3D regions = 1;
18
}
0
-