Add Collision Info
This commit is contained in:
@@ -55,21 +55,46 @@ class DetectionHistory(_message.Message):
|
||||
detections: _containers.RepeatedCompositeFieldContainer[BallDetection]
|
||||
def __init__(self, detections: _Optional[_Iterable[_Union[BallDetection, _Mapping]]] = ...) -> None: ...
|
||||
|
||||
class CollisionInfo(_message.Message):
|
||||
__slots__ = ["source", "ball_identifiers", "wall_identifier", "frame_index", "static"]
|
||||
class BallIdentifiersEntry(_message.Message):
|
||||
__slots__ = ["key", "value"]
|
||||
KEY_FIELD_NUMBER: _ClassVar[int]
|
||||
VALUE_FIELD_NUMBER: _ClassVar[int]
|
||||
key: int
|
||||
value: Point
|
||||
def __init__(self, key: _Optional[int] = ..., value: _Optional[_Union[Point, _Mapping]] = ...) -> None: ...
|
||||
SOURCE_FIELD_NUMBER: _ClassVar[int]
|
||||
BALL_IDENTIFIERS_FIELD_NUMBER: _ClassVar[int]
|
||||
WALL_IDENTIFIER_FIELD_NUMBER: _ClassVar[int]
|
||||
FRAME_INDEX_FIELD_NUMBER: _ClassVar[int]
|
||||
STATIC_FIELD_NUMBER: _ClassVar[int]
|
||||
source: int
|
||||
ball_identifiers: _containers.MessageMap[int, Point]
|
||||
wall_identifier: int
|
||||
frame_index: int
|
||||
static: bool
|
||||
def __init__(self, source: _Optional[int] = ..., ball_identifiers: _Optional[_Mapping[int, Point]] = ..., wall_identifier: _Optional[int] = ..., frame_index: _Optional[int] = ..., static: bool = ...) -> None: ...
|
||||
|
||||
class Path(_message.Message):
|
||||
__slots__ = ["start_frame", "end_frame", "detections", "rle_detections", "not_present", "is_static"]
|
||||
__slots__ = ["start_frame", "end_frame", "detections", "rle_detections", "not_present", "is_static", "start_info", "end_info"]
|
||||
START_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||||
END_FRAME_FIELD_NUMBER: _ClassVar[int]
|
||||
DETECTIONS_FIELD_NUMBER: _ClassVar[int]
|
||||
RLE_DETECTIONS_FIELD_NUMBER: _ClassVar[int]
|
||||
NOT_PRESENT_FIELD_NUMBER: _ClassVar[int]
|
||||
IS_STATIC_FIELD_NUMBER: _ClassVar[int]
|
||||
START_INFO_FIELD_NUMBER: _ClassVar[int]
|
||||
END_INFO_FIELD_NUMBER: _ClassVar[int]
|
||||
start_frame: int
|
||||
end_frame: int
|
||||
detections: DetectionHistory
|
||||
rle_detections: RLEDetectionHistory
|
||||
not_present: bool
|
||||
is_static: bool
|
||||
def __init__(self, start_frame: _Optional[int] = ..., end_frame: _Optional[int] = ..., detections: _Optional[_Union[DetectionHistory, _Mapping]] = ..., rle_detections: _Optional[_Union[RLEDetectionHistory, _Mapping]] = ..., not_present: bool = ..., is_static: bool = ...) -> None: ...
|
||||
start_info: CollisionInfo
|
||||
end_info: CollisionInfo
|
||||
def __init__(self, start_frame: _Optional[int] = ..., end_frame: _Optional[int] = ..., detections: _Optional[_Union[DetectionHistory, _Mapping]] = ..., rle_detections: _Optional[_Union[RLEDetectionHistory, _Mapping]] = ..., not_present: bool = ..., is_static: bool = ..., start_info: _Optional[_Union[CollisionInfo, _Mapping]] = ..., end_info: _Optional[_Union[CollisionInfo, _Mapping]] = ...) -> None: ...
|
||||
|
||||
class IdentifierHistory(_message.Message):
|
||||
__slots__ = ["ball_identifier", "paths"]
|
||||
|
||||
Reference in New Issue
Block a user