Skip to content

Commit

Permalink
Extending PointsAnnotation and CircleAnnotation with object_id
Browse files Browse the repository at this point in the history
  • Loading branch information
markoSyrmia committed May 5, 2023
1 parent 2bde7ce commit b9e8d2f
Show file tree
Hide file tree
Showing 20 changed files with 110 additions and 0 deletions.
10 changes: 10 additions & 0 deletions internal/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,11 @@ const CircleAnnotation: FoxgloveMessageSchema = {
type: { type: "nested", schema: Color },
description: "Outline color",
},
{
name: "object_id",
type: { type: "primitive", name: "string" },
description: "Id of circle",
},
],
};

Expand Down Expand Up @@ -1141,6 +1146,11 @@ const PointsAnnotation: FoxgloveMessageSchema = {
type: { type: "primitive", name: "float64" },
description: "Stroke thickness in pixels",
},
{
name: "object_id",
type: { type: "primitive", name: "string" },
description: "Id of group points",
},
],
};

Expand Down
3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros1/CircleAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros1/PointsAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros2/CircleAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ros_foxglove_msgs/ros2/PointsAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions schemas/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/flatbuffer/CircleAnnotation.fbs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/flatbuffer/PointsAnnotation.fbs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions schemas/jsonschema/CircleAnnotation.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions schemas/jsonschema/ImageAnnotations.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions schemas/jsonschema/PointsAnnotation.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions schemas/jsonschema/index.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/proto/foxglove/CircleAnnotation.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/proto/foxglove/PointsAnnotation.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros1/CircleAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros1/PointsAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros2/CircleAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/ros2/PointsAnnotation.msg

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/typescript/CircleAnnotation.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions schemas/typescript/PointsAnnotation.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b9e8d2f

Please sign in to comment.