-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
schema: add KeyPoint3D, KeyLine3D, Polygon3D #45
base: master
Are you sure you want to change the base?
Changes from all commits
05c3af0
7022c47
f878a1a
6a8aa98
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,15 @@ enum AnnotationType { | |
|
||
// Agent behavior | ||
AGENT_BEHAVIOR = 14; // agent_behavior | ||
|
||
// 3D Key Point in sensor space | ||
KEY_POINT_3D = 15; // key_point_3d | ||
|
||
// 3D Key Line in sensor space | ||
KEY_LINE_3D = 16; // key_line_3d | ||
|
||
// 3D Polygon in sensor space | ||
POLYGON_3D = 17; // polygon_3d | ||
} | ||
|
||
// 2D bounding box | ||
|
@@ -213,6 +222,68 @@ message Polygon2DAnnotation{ | |
map<string, string> attributes = 3; | ||
} | ||
|
||
// 3D point. | ||
message KeyPoint3D { | ||
// (x, y, z) point (in 3D carthesian coordinates). | ||
double x = 1; | ||
double y = 2; | ||
double z = 3; | ||
} | ||
|
||
// 3D point annotation. | ||
message KeyPoint3DAnnotation { | ||
// Class identifier (should be in [0, num_classes - 1]) | ||
uint32 class_id = 1; | ||
|
||
// 3D point. | ||
KeyPoint3D point = 2; | ||
|
||
// An associative map stores arbitrary attributes, where the key is attribute name | ||
// and the value is attribute value. Both key_type and value_type are string. | ||
map<string, string> attributes = 3; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please share where we can find documentation of keys and value semantics to expect here? |
||
|
||
// An identifier key. Used to link with other annotations. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we expand on the semantics here please? What does a proper value look like to make a correct link? |
||
string key = 4; | ||
} | ||
|
||
// 3D line annotation. | ||
message KeyLine3DAnnotation{ | ||
// Class identifier (should be in [0, num_classes - 1]) | ||
uint32 class_id = 1; | ||
|
||
// 3D line. | ||
repeated KeyPoint3D vertices = 2; | ||
|
||
// An associative map stores arbitrary attributes, where the key is attribute name | ||
// and the value is attribute value. Both key_type and value_type are string. | ||
map<string, string> attributes = 3; | ||
|
||
// An identifier key. Used to link with other annotations. | ||
string key = 4; | ||
} | ||
|
||
message PolygonPoint3D { | ||
// (x, y, z) point (in 3D carthesian coordinates). | ||
double x = 1; | ||
double y = 2; | ||
double z = 3; | ||
} | ||
|
||
// 3D polygon annotation. | ||
message Polygon3DAnnotation{ | ||
// Class identifier (should be in [0, num_classes - 1]) | ||
uint32 class_id = 1; | ||
|
||
// 3D polygon. | ||
// Points should be put into this field with counter-clockwise order. | ||
repeated PolygonPoint3D vertices = 2; | ||
|
||
// An associative map stores arbitrary attributes, where the key is attribute name | ||
// and the value is attribute value. Both key_type and value_type are string. | ||
map<string, string> attributes = 3; | ||
} | ||
|
||
|
||
// List of BoundingBox2DAnnotation | ||
message BoundingBox2DAnnotations { | ||
repeated BoundingBox2DAnnotation annotations = 1; | ||
|
@@ -237,3 +308,18 @@ message KeyLine2DAnnotations { | |
message Polygon2DAnnotations { | ||
repeated Polygon2DAnnotation annotations = 1; | ||
} | ||
|
||
// List of KeyPoint3DAnnotation | ||
message KeyPoint3DAnnotations { | ||
repeated KeyPoint3DAnnotation annotations = 1; | ||
} | ||
|
||
// List of KeyLine3DAnnotation | ||
message KeyLine3DAnnotations { | ||
repeated KeyLine3DAnnotation annotations = 1; | ||
} | ||
|
||
// List of Polygon3DAnnotation | ||
message Polygon3DAnnotations { | ||
repeated Polygon3DAnnotation annotations = 1; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please share where
num_classes
defined?