@foxglove/schemas 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +39 -1
- package/.vscode/settings.json +10 -1
- package/internal/schemas.d.ts.map +1 -1
- package/internal/schemas.js +18 -18
- package/internal/schemas.js.map +1 -1
- package/internal/schemas.ts +20 -24
- package/package.json +1 -1
- package/python/Makefile +39 -0
- package/python/Pipfile +17 -0
- package/python/Pipfile.lock +329 -0
- package/python/foxglove-schemas-protobuf/README.md +23 -0
- package/python/foxglove-schemas-protobuf/foxglove_schemas_protobuf/__init__.py +0 -0
- package/python/foxglove-schemas-protobuf/foxglove_schemas_protobuf/py.typed +0 -0
- package/python/foxglove-schemas-protobuf/pyproject.toml +11 -0
- package/python/foxglove-schemas-protobuf/setup.cfg +21 -0
- package/python/foxglove-schemas-protobuf/tests/test_schemas.py +5 -0
- package/schemas/README.md +21 -15
- package/schemas/jsonschema/ArrowPrimitive.json +1 -1
- package/schemas/jsonschema/CameraCalibration.json +2 -2
- package/schemas/jsonschema/CompressedImage.json +1 -1
- package/schemas/jsonschema/CubePrimitive.json +1 -1
- package/schemas/jsonschema/CylinderPrimitive.json +1 -1
- package/schemas/jsonschema/KeyValuePair.json +1 -1
- package/schemas/jsonschema/LinePrimitive.json +1 -1
- package/schemas/jsonschema/ModelPrimitive.json +1 -1
- package/schemas/jsonschema/RawImage.json +1 -1
- package/schemas/jsonschema/SceneEntity.json +10 -10
- package/schemas/jsonschema/SceneEntityDeletion.json +1 -1
- package/schemas/jsonschema/SceneUpdate.json +12 -12
- package/schemas/jsonschema/SpherePrimitive.json +1 -1
- package/schemas/jsonschema/TextPrimitive.json +1 -1
- package/schemas/jsonschema/TriangleListPrimitive.json +1 -1
- package/schemas/jsonschema/index.d.ts +4510 -35
- package/schemas/jsonschema/index.d.ts.map +1 -1
- package/schemas/jsonschema/index.js +36 -36
- package/schemas/jsonschema/index.js.map +1 -1
- package/schemas/jsonschema/index.ts +71 -71
- package/schemas/proto/foxglove/ArrowPrimitive.proto +1 -1
- package/schemas/proto/foxglove/CameraCalibration.proto +3 -1
- package/schemas/proto/foxglove/CompressedImage.proto +2 -0
- package/schemas/proto/foxglove/CubePrimitive.proto +1 -1
- package/schemas/proto/foxglove/CylinderPrimitive.proto +1 -1
- package/schemas/proto/foxglove/KeyValuePair.proto +1 -1
- package/schemas/proto/foxglove/LinePrimitive.proto +2 -2
- package/schemas/proto/foxglove/ModelPrimitive.proto +1 -1
- package/schemas/proto/foxglove/RawImage.proto +2 -0
- package/schemas/proto/foxglove/SceneEntity.proto +1 -1
- package/schemas/proto/foxglove/SceneEntityDeletion.proto +2 -2
- package/schemas/proto/foxglove/SceneUpdate.proto +1 -1
- package/schemas/proto/foxglove/SpherePrimitive.proto +1 -1
- package/schemas/proto/foxglove/TextPrimitive.proto +1 -1
- package/schemas/proto/foxglove/TriangleListPrimitive.proto +1 -1
- package/schemas/ros1/ArrowPrimitive.msg +1 -1
- package/schemas/ros1/CameraCalibration.msg +3 -1
- package/schemas/ros1/CompressedImage.msg +2 -0
- package/schemas/ros1/CubePrimitive.msg +1 -1
- package/schemas/ros1/CylinderPrimitive.msg +1 -1
- package/schemas/ros1/KeyValuePair.msg +1 -1
- package/schemas/ros1/LinePrimitive.msg +1 -1
- package/schemas/ros1/ModelPrimitive.msg +1 -1
- package/schemas/ros1/RawImage.msg +2 -0
- package/schemas/ros1/SceneEntity.msg +1 -1
- package/schemas/ros1/SceneEntityDeletion.msg +1 -1
- package/schemas/ros1/SceneUpdate.msg +1 -1
- package/schemas/ros1/SpherePrimitive.msg +1 -1
- package/schemas/ros1/TextPrimitive.msg +1 -1
- package/schemas/ros1/TriangleListPrimitive.msg +1 -1
- package/schemas/ros2/ArrowPrimitive.msg +1 -1
- package/schemas/ros2/CameraCalibration.msg +3 -1
- package/schemas/ros2/CompressedImage.msg +2 -0
- package/schemas/ros2/CubePrimitive.msg +1 -1
- package/schemas/ros2/CylinderPrimitive.msg +1 -1
- package/schemas/ros2/KeyValuePair.msg +1 -1
- package/schemas/ros2/LinePrimitive.msg +1 -1
- package/schemas/ros2/ModelPrimitive.msg +1 -1
- package/schemas/ros2/RawImage.msg +2 -0
- package/schemas/ros2/SceneEntity.msg +1 -1
- package/schemas/ros2/SceneEntityDeletion.msg +1 -1
- package/schemas/ros2/SceneUpdate.msg +1 -1
- package/schemas/ros2/SpherePrimitive.msg +1 -1
- package/schemas/ros2/TextPrimitive.msg +1 -1
- package/schemas/ros2/TriangleListPrimitive.msg +1 -1
- package/schemas/typescript/ArrowPrimitive.d.ts +1 -1
- package/schemas/typescript/ArrowPrimitive.d.ts.map +1 -1
- package/schemas/typescript/ArrowPrimitive.ts +1 -1
- package/schemas/typescript/CameraCalibration.d.ts +6 -2
- package/schemas/typescript/CameraCalibration.d.ts.map +1 -1
- package/schemas/typescript/CameraCalibration.ts +6 -2
- package/schemas/typescript/CompressedImage.d.ts +5 -1
- package/schemas/typescript/CompressedImage.d.ts.map +1 -1
- package/schemas/typescript/CompressedImage.ts +5 -1
- package/schemas/typescript/CubePrimitive.d.ts +1 -1
- package/schemas/typescript/CubePrimitive.d.ts.map +1 -1
- package/schemas/typescript/CubePrimitive.ts +1 -1
- package/schemas/typescript/CylinderPrimitive.d.ts +1 -1
- package/schemas/typescript/CylinderPrimitive.d.ts.map +1 -1
- package/schemas/typescript/CylinderPrimitive.ts +1 -1
- package/schemas/typescript/KeyValuePair.d.ts +1 -1
- package/schemas/typescript/KeyValuePair.d.ts.map +1 -1
- package/schemas/typescript/KeyValuePair.ts +1 -1
- package/schemas/typescript/LinePrimitive.d.ts +1 -1
- package/schemas/typescript/LinePrimitive.d.ts.map +1 -1
- package/schemas/typescript/LinePrimitive.ts +1 -1
- package/schemas/typescript/LineType.d.ts +1 -1
- package/schemas/typescript/LineType.d.ts.map +1 -1
- package/schemas/typescript/LineType.js +1 -1
- package/schemas/typescript/LineType.js.map +1 -1
- package/schemas/typescript/LineType.ts +1 -1
- package/schemas/typescript/ModelPrimitive.d.ts +1 -1
- package/schemas/typescript/ModelPrimitive.d.ts.map +1 -1
- package/schemas/typescript/ModelPrimitive.ts +1 -1
- package/schemas/typescript/RawImage.d.ts +5 -1
- package/schemas/typescript/RawImage.d.ts.map +1 -1
- package/schemas/typescript/RawImage.ts +5 -1
- package/schemas/typescript/SceneEntity.d.ts +1 -1
- package/schemas/typescript/SceneEntity.d.ts.map +1 -1
- package/schemas/typescript/SceneEntity.ts +1 -1
- package/schemas/typescript/SceneEntityDeletion.d.ts +1 -1
- package/schemas/typescript/SceneEntityDeletion.d.ts.map +1 -1
- package/schemas/typescript/SceneEntityDeletion.ts +1 -1
- package/schemas/typescript/SceneEntityDeletionType.d.ts +1 -1
- package/schemas/typescript/SceneEntityDeletionType.d.ts.map +1 -1
- package/schemas/typescript/SceneEntityDeletionType.js +1 -1
- package/schemas/typescript/SceneEntityDeletionType.js.map +1 -1
- package/schemas/typescript/SceneEntityDeletionType.ts +1 -1
- package/schemas/typescript/SceneUpdate.d.ts +1 -1
- package/schemas/typescript/SceneUpdate.d.ts.map +1 -1
- package/schemas/typescript/SceneUpdate.ts +1 -1
- package/schemas/typescript/SpherePrimitive.d.ts +1 -1
- package/schemas/typescript/SpherePrimitive.d.ts.map +1 -1
- package/schemas/typescript/SpherePrimitive.ts +1 -1
- package/schemas/typescript/TextPrimitive.d.ts +1 -1
- package/schemas/typescript/TextPrimitive.d.ts.map +1 -1
- package/schemas/typescript/TextPrimitive.ts +1 -1
- package/schemas/typescript/TriangleListPrimitive.d.ts +1 -1
- package/schemas/typescript/TriangleListPrimitive.d.ts.map +1 -1
- package/schemas/typescript/TriangleListPrimitive.ts +1 -1
- package/scripts/updateGeneratedFiles.js +1 -1
- package/scripts/updateGeneratedFiles.js.map +1 -1
- package/scripts/updateGeneratedFiles.ts +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// Generated by https://github.com/foxglove/schemas
|
|
2
2
|
|
|
3
|
-
export const ArrowPrimitive
|
|
3
|
+
export const ArrowPrimitive = {
|
|
4
4
|
"title": "foxglove.ArrowPrimitive",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "A primitive representing an arrow",
|
|
6
6
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
@@ -97,7 +97,7 @@ export const ArrowPrimitive: unknown = {
|
|
|
97
97
|
}
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
-
export const CameraCalibration
|
|
100
|
+
export const CameraCalibration = {
|
|
101
101
|
"title": "foxglove.CameraCalibration",
|
|
102
102
|
"description": "Camera calibration parameters",
|
|
103
103
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -135,7 +135,7 @@ export const CameraCalibration: unknown = {
|
|
|
135
135
|
},
|
|
136
136
|
"distortion_model": {
|
|
137
137
|
"type": "string",
|
|
138
|
-
"description": "Name of distortion model"
|
|
138
|
+
"description": "Name of distortion model\n\nSupported values: `plumb_bob` and `rational_polynomial`"
|
|
139
139
|
},
|
|
140
140
|
"D": {
|
|
141
141
|
"type": "array",
|
|
@@ -160,7 +160,7 @@ export const CameraCalibration: unknown = {
|
|
|
160
160
|
},
|
|
161
161
|
"minItems": 9,
|
|
162
162
|
"maxItems": 9,
|
|
163
|
-
"description": "Rectification matrix (3x3 row-major matrix)\n\nA rotation matrix aligning the camera coordinate system to the ideal stereo image plane so that epipolar lines in both stereo images are parallel."
|
|
163
|
+
"description": "Rectification matrix (stereo cameras only, 3x3 row-major matrix)\n\nA rotation matrix aligning the camera coordinate system to the ideal stereo image plane so that epipolar lines in both stereo images are parallel."
|
|
164
164
|
},
|
|
165
165
|
"P": {
|
|
166
166
|
"type": "array",
|
|
@@ -174,7 +174,7 @@ export const CameraCalibration: unknown = {
|
|
|
174
174
|
}
|
|
175
175
|
};
|
|
176
176
|
|
|
177
|
-
export const CircleAnnotation
|
|
177
|
+
export const CircleAnnotation = {
|
|
178
178
|
"title": "foxglove.CircleAnnotation",
|
|
179
179
|
"description": "A circle annotation on a 2D image",
|
|
180
180
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -268,7 +268,7 @@ export const CircleAnnotation: unknown = {
|
|
|
268
268
|
}
|
|
269
269
|
};
|
|
270
270
|
|
|
271
|
-
export const Color
|
|
271
|
+
export const Color = {
|
|
272
272
|
"title": "foxglove.Color",
|
|
273
273
|
"description": "A color in RGBA format",
|
|
274
274
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -293,7 +293,7 @@ export const Color: unknown = {
|
|
|
293
293
|
}
|
|
294
294
|
};
|
|
295
295
|
|
|
296
|
-
export const CompressedImage
|
|
296
|
+
export const CompressedImage = {
|
|
297
297
|
"title": "foxglove.CompressedImage",
|
|
298
298
|
"description": "A compressed image",
|
|
299
299
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -326,14 +326,14 @@ export const CompressedImage: unknown = {
|
|
|
326
326
|
},
|
|
327
327
|
"format": {
|
|
328
328
|
"type": "string",
|
|
329
|
-
"description": "Image format"
|
|
329
|
+
"description": "Image format\n\nSupported values: `webp`, `jpeg`, `png`"
|
|
330
330
|
}
|
|
331
331
|
}
|
|
332
332
|
};
|
|
333
333
|
|
|
334
|
-
export const CylinderPrimitive
|
|
334
|
+
export const CylinderPrimitive = {
|
|
335
335
|
"title": "foxglove.CylinderPrimitive",
|
|
336
|
-
"description": "
|
|
336
|
+
"description": "A primitive representing a cylinder, elliptic cylinder, or truncated cone",
|
|
337
337
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
338
338
|
"type": "object",
|
|
339
339
|
"properties": {
|
|
@@ -439,9 +439,9 @@ export const CylinderPrimitive: unknown = {
|
|
|
439
439
|
}
|
|
440
440
|
};
|
|
441
441
|
|
|
442
|
-
export const CubePrimitive
|
|
442
|
+
export const CubePrimitive = {
|
|
443
443
|
"title": "foxglove.CubePrimitive",
|
|
444
|
-
"description": "
|
|
444
|
+
"description": "A primitive representing a cube or rectangular prism",
|
|
445
445
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
446
446
|
"type": "object",
|
|
447
447
|
"properties": {
|
|
@@ -539,7 +539,7 @@ export const CubePrimitive: unknown = {
|
|
|
539
539
|
}
|
|
540
540
|
};
|
|
541
541
|
|
|
542
|
-
export const FrameTransform
|
|
542
|
+
export const FrameTransform = {
|
|
543
543
|
"title": "foxglove.FrameTransform",
|
|
544
544
|
"description": "A transform between two reference frames in 3D space",
|
|
545
545
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -614,7 +614,7 @@ export const FrameTransform: unknown = {
|
|
|
614
614
|
}
|
|
615
615
|
};
|
|
616
616
|
|
|
617
|
-
export const GeoJSON
|
|
617
|
+
export const GeoJSON = {
|
|
618
618
|
"title": "foxglove.GeoJSON",
|
|
619
619
|
"description": "GeoJSON data for annotating maps",
|
|
620
620
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -627,7 +627,7 @@ export const GeoJSON: unknown = {
|
|
|
627
627
|
}
|
|
628
628
|
};
|
|
629
629
|
|
|
630
|
-
export const Grid
|
|
630
|
+
export const Grid = {
|
|
631
631
|
"title": "foxglove.Grid",
|
|
632
632
|
"description": "A 2D grid of data",
|
|
633
633
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -802,7 +802,7 @@ export const Grid: unknown = {
|
|
|
802
802
|
}
|
|
803
803
|
};
|
|
804
804
|
|
|
805
|
-
export const ImageAnnotations
|
|
805
|
+
export const ImageAnnotations = {
|
|
806
806
|
"title": "foxglove.ImageAnnotations",
|
|
807
807
|
"description": "Array of annotations for a 2D image",
|
|
808
808
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -1056,9 +1056,9 @@ export const ImageAnnotations: unknown = {
|
|
|
1056
1056
|
}
|
|
1057
1057
|
};
|
|
1058
1058
|
|
|
1059
|
-
export const KeyValuePair
|
|
1059
|
+
export const KeyValuePair = {
|
|
1060
1060
|
"title": "foxglove.KeyValuePair",
|
|
1061
|
-
"description": "
|
|
1061
|
+
"description": "A key with its associated value",
|
|
1062
1062
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
1063
1063
|
"type": "object",
|
|
1064
1064
|
"properties": {
|
|
@@ -1073,7 +1073,7 @@ export const KeyValuePair: unknown = {
|
|
|
1073
1073
|
}
|
|
1074
1074
|
};
|
|
1075
1075
|
|
|
1076
|
-
export const LaserScan
|
|
1076
|
+
export const LaserScan = {
|
|
1077
1077
|
"title": "foxglove.LaserScan",
|
|
1078
1078
|
"description": "A single scan from a planar laser range-finder",
|
|
1079
1079
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -1173,9 +1173,9 @@ export const LaserScan: unknown = {
|
|
|
1173
1173
|
}
|
|
1174
1174
|
};
|
|
1175
1175
|
|
|
1176
|
-
export const LinePrimitive
|
|
1176
|
+
export const LinePrimitive = {
|
|
1177
1177
|
"title": "foxglove.LinePrimitive",
|
|
1178
|
-
"description": "
|
|
1178
|
+
"description": "A primitive representing a series of points connected by lines",
|
|
1179
1179
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
1180
1180
|
"type": "object",
|
|
1181
1181
|
"properties": {
|
|
@@ -1341,7 +1341,7 @@ export const LinePrimitive: unknown = {
|
|
|
1341
1341
|
}
|
|
1342
1342
|
};
|
|
1343
1343
|
|
|
1344
|
-
export const LocationFix
|
|
1344
|
+
export const LocationFix = {
|
|
1345
1345
|
"title": "foxglove.LocationFix",
|
|
1346
1346
|
"description": "A navigation satellite fix for any Global Navigation Satellite System",
|
|
1347
1347
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -1393,7 +1393,7 @@ export const LocationFix: unknown = {
|
|
|
1393
1393
|
}
|
|
1394
1394
|
};
|
|
1395
1395
|
|
|
1396
|
-
export const Log
|
|
1396
|
+
export const Log = {
|
|
1397
1397
|
"title": "foxglove.Log",
|
|
1398
1398
|
"description": "A log message",
|
|
1399
1399
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -1465,9 +1465,9 @@ export const Log: unknown = {
|
|
|
1465
1465
|
}
|
|
1466
1466
|
};
|
|
1467
1467
|
|
|
1468
|
-
export const SceneEntityDeletion
|
|
1468
|
+
export const SceneEntityDeletion = {
|
|
1469
1469
|
"title": "foxglove.SceneEntityDeletion",
|
|
1470
|
-
"description": "
|
|
1470
|
+
"description": "Command to remove previously published entities",
|
|
1471
1471
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
1472
1472
|
"type": "object",
|
|
1473
1473
|
"properties": {
|
|
@@ -1510,9 +1510,9 @@ export const SceneEntityDeletion: unknown = {
|
|
|
1510
1510
|
}
|
|
1511
1511
|
};
|
|
1512
1512
|
|
|
1513
|
-
export const SceneEntity
|
|
1513
|
+
export const SceneEntity = {
|
|
1514
1514
|
"title": "foxglove.SceneEntity",
|
|
1515
|
-
"description": "
|
|
1515
|
+
"description": "A visual element in a 3D scene. An entity may be composed of multiple primitives which all share the same frame of reference.",
|
|
1516
1516
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
1517
1517
|
"type": "object",
|
|
1518
1518
|
"properties": {
|
|
@@ -1563,7 +1563,7 @@ export const SceneEntity: unknown = {
|
|
|
1563
1563
|
"type": "array",
|
|
1564
1564
|
"items": {
|
|
1565
1565
|
"title": "foxglove.KeyValuePair",
|
|
1566
|
-
"description": "
|
|
1566
|
+
"description": "A key with its associated value",
|
|
1567
1567
|
"type": "object",
|
|
1568
1568
|
"properties": {
|
|
1569
1569
|
"key": {
|
|
@@ -1582,7 +1582,7 @@ export const SceneEntity: unknown = {
|
|
|
1582
1582
|
"type": "array",
|
|
1583
1583
|
"items": {
|
|
1584
1584
|
"title": "foxglove.ArrowPrimitive",
|
|
1585
|
-
"description": "
|
|
1585
|
+
"description": "A primitive representing an arrow",
|
|
1586
1586
|
"type": "object",
|
|
1587
1587
|
"properties": {
|
|
1588
1588
|
"pose": {
|
|
@@ -1681,7 +1681,7 @@ export const SceneEntity: unknown = {
|
|
|
1681
1681
|
"type": "array",
|
|
1682
1682
|
"items": {
|
|
1683
1683
|
"title": "foxglove.CubePrimitive",
|
|
1684
|
-
"description": "
|
|
1684
|
+
"description": "A primitive representing a cube or rectangular prism",
|
|
1685
1685
|
"type": "object",
|
|
1686
1686
|
"properties": {
|
|
1687
1687
|
"pose": {
|
|
@@ -1783,7 +1783,7 @@ export const SceneEntity: unknown = {
|
|
|
1783
1783
|
"type": "array",
|
|
1784
1784
|
"items": {
|
|
1785
1785
|
"title": "foxglove.SpherePrimitive",
|
|
1786
|
-
"description": "
|
|
1786
|
+
"description": "A primitive representing a sphere or ellipsoid",
|
|
1787
1787
|
"type": "object",
|
|
1788
1788
|
"properties": {
|
|
1789
1789
|
"pose": {
|
|
@@ -1885,7 +1885,7 @@ export const SceneEntity: unknown = {
|
|
|
1885
1885
|
"type": "array",
|
|
1886
1886
|
"items": {
|
|
1887
1887
|
"title": "foxglove.CylinderPrimitive",
|
|
1888
|
-
"description": "
|
|
1888
|
+
"description": "A primitive representing a cylinder, elliptic cylinder, or truncated cone",
|
|
1889
1889
|
"type": "object",
|
|
1890
1890
|
"properties": {
|
|
1891
1891
|
"pose": {
|
|
@@ -1995,7 +1995,7 @@ export const SceneEntity: unknown = {
|
|
|
1995
1995
|
"type": "array",
|
|
1996
1996
|
"items": {
|
|
1997
1997
|
"title": "foxglove.LinePrimitive",
|
|
1998
|
-
"description": "
|
|
1998
|
+
"description": "A primitive representing a series of points connected by lines",
|
|
1999
1999
|
"type": "object",
|
|
2000
2000
|
"properties": {
|
|
2001
2001
|
"type": {
|
|
@@ -2165,7 +2165,7 @@ export const SceneEntity: unknown = {
|
|
|
2165
2165
|
"type": "array",
|
|
2166
2166
|
"items": {
|
|
2167
2167
|
"title": "foxglove.TriangleListPrimitive",
|
|
2168
|
-
"description": "
|
|
2168
|
+
"description": "A primitive representing a set of triangles or a surface tiled by triangles",
|
|
2169
2169
|
"type": "object",
|
|
2170
2170
|
"properties": {
|
|
2171
2171
|
"pose": {
|
|
@@ -2306,7 +2306,7 @@ export const SceneEntity: unknown = {
|
|
|
2306
2306
|
"type": "array",
|
|
2307
2307
|
"items": {
|
|
2308
2308
|
"title": "foxglove.TextPrimitive",
|
|
2309
|
-
"description": "
|
|
2309
|
+
"description": "A primitive representing a text label",
|
|
2310
2310
|
"type": "object",
|
|
2311
2311
|
"properties": {
|
|
2312
2312
|
"pose": {
|
|
@@ -2405,7 +2405,7 @@ export const SceneEntity: unknown = {
|
|
|
2405
2405
|
"type": "array",
|
|
2406
2406
|
"items": {
|
|
2407
2407
|
"title": "foxglove.ModelPrimitive",
|
|
2408
|
-
"description": "
|
|
2408
|
+
"description": "A primitive representing a 3D model file loaded from an external URL or embedded data",
|
|
2409
2409
|
"type": "object",
|
|
2410
2410
|
"properties": {
|
|
2411
2411
|
"pose": {
|
|
@@ -2523,9 +2523,9 @@ export const SceneEntity: unknown = {
|
|
|
2523
2523
|
}
|
|
2524
2524
|
};
|
|
2525
2525
|
|
|
2526
|
-
export const SceneUpdate
|
|
2526
|
+
export const SceneUpdate = {
|
|
2527
2527
|
"title": "foxglove.SceneUpdate",
|
|
2528
|
-
"description": "
|
|
2528
|
+
"description": "An update to the entities displayed in a 3D scene",
|
|
2529
2529
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
2530
2530
|
"type": "object",
|
|
2531
2531
|
"properties": {
|
|
@@ -2533,7 +2533,7 @@ export const SceneUpdate: unknown = {
|
|
|
2533
2533
|
"type": "array",
|
|
2534
2534
|
"items": {
|
|
2535
2535
|
"title": "foxglove.SceneEntityDeletion",
|
|
2536
|
-
"description": "
|
|
2536
|
+
"description": "Command to remove previously published entities",
|
|
2537
2537
|
"type": "object",
|
|
2538
2538
|
"properties": {
|
|
2539
2539
|
"timestamp": {
|
|
@@ -2580,7 +2580,7 @@ export const SceneUpdate: unknown = {
|
|
|
2580
2580
|
"type": "array",
|
|
2581
2581
|
"items": {
|
|
2582
2582
|
"title": "foxglove.SceneEntity",
|
|
2583
|
-
"description": "
|
|
2583
|
+
"description": "A visual element in a 3D scene. An entity may be composed of multiple primitives which all share the same frame of reference.",
|
|
2584
2584
|
"type": "object",
|
|
2585
2585
|
"properties": {
|
|
2586
2586
|
"timestamp": {
|
|
@@ -2630,7 +2630,7 @@ export const SceneUpdate: unknown = {
|
|
|
2630
2630
|
"type": "array",
|
|
2631
2631
|
"items": {
|
|
2632
2632
|
"title": "foxglove.KeyValuePair",
|
|
2633
|
-
"description": "
|
|
2633
|
+
"description": "A key with its associated value",
|
|
2634
2634
|
"type": "object",
|
|
2635
2635
|
"properties": {
|
|
2636
2636
|
"key": {
|
|
@@ -2649,7 +2649,7 @@ export const SceneUpdate: unknown = {
|
|
|
2649
2649
|
"type": "array",
|
|
2650
2650
|
"items": {
|
|
2651
2651
|
"title": "foxglove.ArrowPrimitive",
|
|
2652
|
-
"description": "
|
|
2652
|
+
"description": "A primitive representing an arrow",
|
|
2653
2653
|
"type": "object",
|
|
2654
2654
|
"properties": {
|
|
2655
2655
|
"pose": {
|
|
@@ -2748,7 +2748,7 @@ export const SceneUpdate: unknown = {
|
|
|
2748
2748
|
"type": "array",
|
|
2749
2749
|
"items": {
|
|
2750
2750
|
"title": "foxglove.CubePrimitive",
|
|
2751
|
-
"description": "
|
|
2751
|
+
"description": "A primitive representing a cube or rectangular prism",
|
|
2752
2752
|
"type": "object",
|
|
2753
2753
|
"properties": {
|
|
2754
2754
|
"pose": {
|
|
@@ -2850,7 +2850,7 @@ export const SceneUpdate: unknown = {
|
|
|
2850
2850
|
"type": "array",
|
|
2851
2851
|
"items": {
|
|
2852
2852
|
"title": "foxglove.SpherePrimitive",
|
|
2853
|
-
"description": "
|
|
2853
|
+
"description": "A primitive representing a sphere or ellipsoid",
|
|
2854
2854
|
"type": "object",
|
|
2855
2855
|
"properties": {
|
|
2856
2856
|
"pose": {
|
|
@@ -2952,7 +2952,7 @@ export const SceneUpdate: unknown = {
|
|
|
2952
2952
|
"type": "array",
|
|
2953
2953
|
"items": {
|
|
2954
2954
|
"title": "foxglove.CylinderPrimitive",
|
|
2955
|
-
"description": "
|
|
2955
|
+
"description": "A primitive representing a cylinder, elliptic cylinder, or truncated cone",
|
|
2956
2956
|
"type": "object",
|
|
2957
2957
|
"properties": {
|
|
2958
2958
|
"pose": {
|
|
@@ -3062,7 +3062,7 @@ export const SceneUpdate: unknown = {
|
|
|
3062
3062
|
"type": "array",
|
|
3063
3063
|
"items": {
|
|
3064
3064
|
"title": "foxglove.LinePrimitive",
|
|
3065
|
-
"description": "
|
|
3065
|
+
"description": "A primitive representing a series of points connected by lines",
|
|
3066
3066
|
"type": "object",
|
|
3067
3067
|
"properties": {
|
|
3068
3068
|
"type": {
|
|
@@ -3232,7 +3232,7 @@ export const SceneUpdate: unknown = {
|
|
|
3232
3232
|
"type": "array",
|
|
3233
3233
|
"items": {
|
|
3234
3234
|
"title": "foxglove.TriangleListPrimitive",
|
|
3235
|
-
"description": "
|
|
3235
|
+
"description": "A primitive representing a set of triangles or a surface tiled by triangles",
|
|
3236
3236
|
"type": "object",
|
|
3237
3237
|
"properties": {
|
|
3238
3238
|
"pose": {
|
|
@@ -3373,7 +3373,7 @@ export const SceneUpdate: unknown = {
|
|
|
3373
3373
|
"type": "array",
|
|
3374
3374
|
"items": {
|
|
3375
3375
|
"title": "foxglove.TextPrimitive",
|
|
3376
|
-
"description": "
|
|
3376
|
+
"description": "A primitive representing a text label",
|
|
3377
3377
|
"type": "object",
|
|
3378
3378
|
"properties": {
|
|
3379
3379
|
"pose": {
|
|
@@ -3472,7 +3472,7 @@ export const SceneUpdate: unknown = {
|
|
|
3472
3472
|
"type": "array",
|
|
3473
3473
|
"items": {
|
|
3474
3474
|
"title": "foxglove.ModelPrimitive",
|
|
3475
|
-
"description": "
|
|
3475
|
+
"description": "A primitive representing a 3D model file loaded from an external URL or embedded data",
|
|
3476
3476
|
"type": "object",
|
|
3477
3477
|
"properties": {
|
|
3478
3478
|
"pose": {
|
|
@@ -3594,9 +3594,9 @@ export const SceneUpdate: unknown = {
|
|
|
3594
3594
|
}
|
|
3595
3595
|
};
|
|
3596
3596
|
|
|
3597
|
-
export const ModelPrimitive
|
|
3597
|
+
export const ModelPrimitive = {
|
|
3598
3598
|
"title": "foxglove.ModelPrimitive",
|
|
3599
|
-
"description": "
|
|
3599
|
+
"description": "A primitive representing a 3D model file loaded from an external URL or embedded data",
|
|
3600
3600
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
3601
3601
|
"type": "object",
|
|
3602
3602
|
"properties": {
|
|
@@ -3711,7 +3711,7 @@ export const ModelPrimitive: unknown = {
|
|
|
3711
3711
|
}
|
|
3712
3712
|
};
|
|
3713
3713
|
|
|
3714
|
-
export const PackedElementField
|
|
3714
|
+
export const PackedElementField = {
|
|
3715
3715
|
"title": "foxglove.PackedElementField",
|
|
3716
3716
|
"description": "A field present within each element in a byte array of packed elements.",
|
|
3717
3717
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -3771,7 +3771,7 @@ export const PackedElementField: unknown = {
|
|
|
3771
3771
|
}
|
|
3772
3772
|
};
|
|
3773
3773
|
|
|
3774
|
-
export const Point2
|
|
3774
|
+
export const Point2 = {
|
|
3775
3775
|
"title": "foxglove.Point2",
|
|
3776
3776
|
"description": "A point representing a position in 2D space",
|
|
3777
3777
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -3788,7 +3788,7 @@ export const Point2: unknown = {
|
|
|
3788
3788
|
}
|
|
3789
3789
|
};
|
|
3790
3790
|
|
|
3791
|
-
export const Point3
|
|
3791
|
+
export const Point3 = {
|
|
3792
3792
|
"title": "foxglove.Point3",
|
|
3793
3793
|
"description": "A point representing a position in 3D space",
|
|
3794
3794
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -3809,7 +3809,7 @@ export const Point3: unknown = {
|
|
|
3809
3809
|
}
|
|
3810
3810
|
};
|
|
3811
3811
|
|
|
3812
|
-
export const PointCloud
|
|
3812
|
+
export const PointCloud = {
|
|
3813
3813
|
"title": "foxglove.PointCloud",
|
|
3814
3814
|
"description": "A collection of N-dimensional points, which may contain additional fields with information like normals, intensity, etc.",
|
|
3815
3815
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -3959,7 +3959,7 @@ export const PointCloud: unknown = {
|
|
|
3959
3959
|
}
|
|
3960
3960
|
};
|
|
3961
3961
|
|
|
3962
|
-
export const PointsAnnotation
|
|
3962
|
+
export const PointsAnnotation = {
|
|
3963
3963
|
"title": "foxglove.PointsAnnotation",
|
|
3964
3964
|
"description": "An array of points on a 2D image",
|
|
3965
3965
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4106,7 +4106,7 @@ export const PointsAnnotation: unknown = {
|
|
|
4106
4106
|
}
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
|
-
export const Pose
|
|
4109
|
+
export const Pose = {
|
|
4110
4110
|
"title": "foxglove.Pose",
|
|
4111
4111
|
"description": "A position and orientation for an object or reference frame in 3D space",
|
|
4112
4112
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4157,7 +4157,7 @@ export const Pose: unknown = {
|
|
|
4157
4157
|
}
|
|
4158
4158
|
};
|
|
4159
4159
|
|
|
4160
|
-
export const PoseInFrame
|
|
4160
|
+
export const PoseInFrame = {
|
|
4161
4161
|
"title": "foxglove.PoseInFrame",
|
|
4162
4162
|
"description": "A timestamped pose for an object or reference frame in 3D space",
|
|
4163
4163
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4235,7 +4235,7 @@ export const PoseInFrame: unknown = {
|
|
|
4235
4235
|
}
|
|
4236
4236
|
};
|
|
4237
4237
|
|
|
4238
|
-
export const PosesInFrame
|
|
4238
|
+
export const PosesInFrame = {
|
|
4239
4239
|
"title": "foxglove.PosesInFrame",
|
|
4240
4240
|
"description": "An array of timestamped poses for an object or reference frame in 3D space",
|
|
4241
4241
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4317,7 +4317,7 @@ export const PosesInFrame: unknown = {
|
|
|
4317
4317
|
}
|
|
4318
4318
|
};
|
|
4319
4319
|
|
|
4320
|
-
export const Quaternion
|
|
4320
|
+
export const Quaternion = {
|
|
4321
4321
|
"title": "foxglove.Quaternion",
|
|
4322
4322
|
"description": "A [quaternion](https://eater.net/quaternions) representing a rotation in 3D space",
|
|
4323
4323
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4342,7 +4342,7 @@ export const Quaternion: unknown = {
|
|
|
4342
4342
|
}
|
|
4343
4343
|
};
|
|
4344
4344
|
|
|
4345
|
-
export const RawImage
|
|
4345
|
+
export const RawImage = {
|
|
4346
4346
|
"title": "foxglove.RawImage",
|
|
4347
4347
|
"description": "A raw image",
|
|
4348
4348
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4380,7 +4380,7 @@ export const RawImage: unknown = {
|
|
|
4380
4380
|
},
|
|
4381
4381
|
"encoding": {
|
|
4382
4382
|
"type": "string",
|
|
4383
|
-
"description": "Encoding of the raw image data"
|
|
4383
|
+
"description": "Encoding of the raw image data\n\nSupported values: `8UC1`, `8UC3`, `16UC1`, `32FC1`, `bayer_bggr8`, `bayer_gbrg8`, `bayer_grbg8`, `bayer_rggb8`, `bgr8`, `bgra8`, `mono8`, `mono16`, `rgb8`, `rgba8`, `yuv422`"
|
|
4384
4384
|
},
|
|
4385
4385
|
"step": {
|
|
4386
4386
|
"type": "integer",
|
|
@@ -4395,9 +4395,9 @@ export const RawImage: unknown = {
|
|
|
4395
4395
|
}
|
|
4396
4396
|
};
|
|
4397
4397
|
|
|
4398
|
-
export const SpherePrimitive
|
|
4398
|
+
export const SpherePrimitive = {
|
|
4399
4399
|
"title": "foxglove.SpherePrimitive",
|
|
4400
|
-
"description": "
|
|
4400
|
+
"description": "A primitive representing a sphere or ellipsoid",
|
|
4401
4401
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
4402
4402
|
"type": "object",
|
|
4403
4403
|
"properties": {
|
|
@@ -4495,9 +4495,9 @@ export const SpherePrimitive: unknown = {
|
|
|
4495
4495
|
}
|
|
4496
4496
|
};
|
|
4497
4497
|
|
|
4498
|
-
export const TextPrimitive
|
|
4498
|
+
export const TextPrimitive = {
|
|
4499
4499
|
"title": "foxglove.TextPrimitive",
|
|
4500
|
-
"description": "
|
|
4500
|
+
"description": "A primitive representing a text label",
|
|
4501
4501
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
4502
4502
|
"type": "object",
|
|
4503
4503
|
"properties": {
|
|
@@ -4592,9 +4592,9 @@ export const TextPrimitive: unknown = {
|
|
|
4592
4592
|
}
|
|
4593
4593
|
};
|
|
4594
4594
|
|
|
4595
|
-
export const TriangleListPrimitive
|
|
4595
|
+
export const TriangleListPrimitive = {
|
|
4596
4596
|
"title": "foxglove.TriangleListPrimitive",
|
|
4597
|
-
"description": "
|
|
4597
|
+
"description": "A primitive representing a set of triangles or a surface tiled by triangles",
|
|
4598
4598
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
4599
4599
|
"type": "object",
|
|
4600
4600
|
"properties": {
|
|
@@ -4731,7 +4731,7 @@ export const TriangleListPrimitive: unknown = {
|
|
|
4731
4731
|
}
|
|
4732
4732
|
};
|
|
4733
4733
|
|
|
4734
|
-
export const Vector2
|
|
4734
|
+
export const Vector2 = {
|
|
4735
4735
|
"title": "foxglove.Vector2",
|
|
4736
4736
|
"description": "A vector in 2D space that represents a direction only",
|
|
4737
4737
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -4748,7 +4748,7 @@ export const Vector2: unknown = {
|
|
|
4748
4748
|
}
|
|
4749
4749
|
};
|
|
4750
4750
|
|
|
4751
|
-
export const Vector3
|
|
4751
|
+
export const Vector3 = {
|
|
4752
4752
|
"title": "foxglove.Vector3",
|
|
4753
4753
|
"description": "A vector in 3D space that represents a direction only",
|
|
4754
4754
|
"$comment": "Generated by https://github.com/foxglove/schemas",
|
|
@@ -7,7 +7,7 @@ import "foxglove/Pose.proto";
|
|
|
7
7
|
|
|
8
8
|
package foxglove;
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// A primitive representing an arrow
|
|
11
11
|
message ArrowPrimitive {
|
|
12
12
|
// Position of the arrow's tail and orientation of the arrow. Identity orientation means the arrow points in the +x direction.
|
|
13
13
|
foxglove.Pose pose = 1;
|
|
@@ -21,6 +21,8 @@ message CameraCalibration {
|
|
|
21
21
|
fixed32 height = 3;
|
|
22
22
|
|
|
23
23
|
// Name of distortion model
|
|
24
|
+
//
|
|
25
|
+
// Supported values: `plumb_bob` and `rational_polynomial`
|
|
24
26
|
string distortion_model = 4;
|
|
25
27
|
|
|
26
28
|
// Distortion parameters
|
|
@@ -39,7 +41,7 @@ message CameraCalibration {
|
|
|
39
41
|
// ```
|
|
40
42
|
repeated double K = 6; // length 9
|
|
41
43
|
|
|
42
|
-
// Rectification matrix (3x3 row-major matrix)
|
|
44
|
+
// Rectification matrix (stereo cameras only, 3x3 row-major matrix)
|
|
43
45
|
//
|
|
44
46
|
// A rotation matrix aligning the camera coordinate system to the ideal stereo image plane so that epipolar lines in both stereo images are parallel.
|
|
45
47
|
repeated double R = 7; // length 9
|
|
@@ -8,7 +8,7 @@ import "foxglove/Vector3.proto";
|
|
|
8
8
|
|
|
9
9
|
package foxglove;
|
|
10
10
|
|
|
11
|
-
//
|
|
11
|
+
// A primitive representing a cube or rectangular prism
|
|
12
12
|
message CubePrimitive {
|
|
13
13
|
// Position of the center of the cube and orientation of the cube
|
|
14
14
|
foxglove.Pose pose = 1;
|
|
@@ -8,7 +8,7 @@ import "foxglove/Vector3.proto";
|
|
|
8
8
|
|
|
9
9
|
package foxglove;
|
|
10
10
|
|
|
11
|
-
//
|
|
11
|
+
// A primitive representing a cylinder, elliptic cylinder, or truncated cone
|
|
12
12
|
message CylinderPrimitive {
|
|
13
13
|
// Position of the center of the cylinder and orientation of the cylinder. The flat face(s) are perpendicular to the z-axis.
|
|
14
14
|
foxglove.Pose pose = 1;
|
|
@@ -8,9 +8,9 @@ import "foxglove/Pose.proto";
|
|
|
8
8
|
|
|
9
9
|
package foxglove;
|
|
10
10
|
|
|
11
|
-
//
|
|
11
|
+
// A primitive representing a series of points connected by lines
|
|
12
12
|
message LinePrimitive {
|
|
13
|
-
//
|
|
13
|
+
// An enumeration indicating how input points should be interpreted to create lines
|
|
14
14
|
enum Type {
|
|
15
15
|
// 0-1, 1-2, ..., (n-1)-n
|
|
16
16
|
LINE_STRIP = 0;
|
|
@@ -8,7 +8,7 @@ import "foxglove/Vector3.proto";
|
|
|
8
8
|
|
|
9
9
|
package foxglove;
|
|
10
10
|
|
|
11
|
-
//
|
|
11
|
+
// A primitive representing a 3D model file loaded from an external URL or embedded data
|
|
12
12
|
message ModelPrimitive {
|
|
13
13
|
// Origin of model relative to reference frame
|
|
14
14
|
foxglove.Pose pose = 1;
|
|
@@ -21,6 +21,8 @@ message RawImage {
|
|
|
21
21
|
fixed32 height = 3;
|
|
22
22
|
|
|
23
23
|
// Encoding of the raw image data
|
|
24
|
+
//
|
|
25
|
+
// Supported values: `8UC1`, `8UC3`, `16UC1`, `32FC1`, `bayer_bggr8`, `bayer_gbrg8`, `bayer_grbg8`, `bayer_rggb8`, `bgr8`, `bgra8`, `mono8`, `mono16`, `rgb8`, `rgba8`, `yuv422`
|
|
24
26
|
string encoding = 4;
|
|
25
27
|
|
|
26
28
|
// Byte length of a single row
|
|
@@ -16,7 +16,7 @@ import "google/protobuf/timestamp.proto";
|
|
|
16
16
|
|
|
17
17
|
package foxglove;
|
|
18
18
|
|
|
19
|
-
//
|
|
19
|
+
// A visual element in a 3D scene. An entity may be composed of multiple primitives which all share the same frame of reference.
|
|
20
20
|
message SceneEntity {
|
|
21
21
|
// Timestamp of the entity
|
|
22
22
|
google.protobuf.Timestamp timestamp = 1;
|