From 454bcb9d851db419425e06ea145ec9aba9bd4ce9 Mon Sep 17 00:00:00 2001 From: Leon Ziegler Date: Mon, 31 Aug 2015 11:06:09 +0200 Subject: [PATCH 2/2] added list version of TrackedClassifiedRegion3D --- .../rst/tracking/TrackedClassifiedRegions3D.proto | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 proto/sandbox/rst/tracking/TrackedClassifiedRegions3D.proto diff --git a/proto/sandbox/rst/tracking/TrackedClassifiedRegions3D.proto b/proto/sandbox/rst/tracking/TrackedClassifiedRegions3D.proto new file mode 100644 index 0000000..85e2c05 --- /dev/null +++ b/proto/sandbox/rst/tracking/TrackedClassifiedRegions3D.proto @@ -0,0 +1,27 @@ +package rst.tracking; + +import "rst/tracking/TrackedClassifiedRegion3D.proto"; + +option java_outer_classname = "TrackedClassifiedRegions3DType"; + +/** + * A collection of @ref .TrackedClassifiedRegion3D objects. + * + * Collecting multiple @ref .TrackedClassifiedRegion3D objects in a + * single data structure is an easy way to express the fact that they + * have been recorded at the same point in time. + * + * @author Leon Ziegler + */ +message TrackedClassifiedRegions3D { + + /** + * Empty collections of tracked regions are allowed but should + * rarely be necessary. + * + * Order of regions is not significant since association of + * tracked regions to tracked subjects is done via @ref + * .regions.info. + */ + repeated TrackedClassifiedRegion3D region = 1; +} -- 1.9.1