From 60773e45834c73f520c8a677d9531686a3c9bd88 Mon Sep 17 00:00:00 2001 From: Leon Ziegler Date: Sun, 11 May 2014 14:49:19 +0200 Subject: [PATCH 1/2] Added new type ClassifiedRegions2D. It is basically a set of the ClassifiedRegion2D type. --- .../rst/classification/ClassifiedRegions2D.proto | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 proto/sandbox/rst/classification/ClassifiedRegions2D.proto diff --git a/proto/sandbox/rst/classification/ClassifiedRegions2D.proto b/proto/sandbox/rst/classification/ClassifiedRegions2D.proto new file mode 100644 index 0000000..f700054 --- /dev/null +++ b/proto/sandbox/rst/classification/ClassifiedRegions2D.proto @@ -0,0 +1,18 @@ +package rst.classification; + +import "rst/classification/ClassifiedRegion2D.proto"; + +option java_outer_classname = "ClassifiedRegions2DType"; + +/** + * A set of image regions with classification results. + * + * @author Leon Ziegler + */ +message ClassifiedRegions2D { + + /** + * The set of regions. + */ + repeated ClassifiedRegion2D regions = 1; +} -- 1.7.9.5