0001-Added-ClassificationResults-proto-file.patch

N. Köster, 02/04/2015 04:20 PM

Download (1.25 KB)

View differences:

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

  
3
option java_outer_classname = "ClassificationResultsType";
4

  
5
/**
6
 * A class representing multiple result of classification process(es).
7
 *
8
 * @author Norman Koester <nkoester@techfak.uni-bielefeld.de>
9
 */
10
message ClassificationResults {
11

  
12
    /**
13
     * A vector of results holding multiple classification results.
14
     *
15
     * The results inside should be a merged representation and not contradict
16
     * each other w.r.t. the individual classes.
17
     */
18
    repeated ClassificationResult classes = 1;
19

  
20
}
0
-