from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union DESCRIPTOR: _descriptor.FileDescriptor class Box(_message.Message): __slots__ = ["left", "top", "width", "height"] LEFT_FIELD_NUMBER: _ClassVar[int] TOP_FIELD_NUMBER: _ClassVar[int] WIDTH_FIELD_NUMBER: _ClassVar[int] HEIGHT_FIELD_NUMBER: _ClassVar[int] left: float top: float width: float height: float def __init__(self, left: _Optional[float] = ..., top: _Optional[float] = ..., width: _Optional[float] = ..., height: _Optional[float] = ...) -> None: ... class Point(_message.Message): __slots__ = ["x", "y"] X_FIELD_NUMBER: _ClassVar[int] Y_FIELD_NUMBER: _ClassVar[int] x: float y: float def __init__(self, x: _Optional[float] = ..., y: _Optional[float] = ...) -> None: ... class BallDetection(_message.Message): __slots__ = ["plane_position", "annotation", "interpolated"] PLANE_POSITION_FIELD_NUMBER: _ClassVar[int] ANNOTATION_FIELD_NUMBER: _ClassVar[int] INTERPOLATED_FIELD_NUMBER: _ClassVar[int] plane_position: Point annotation: Box interpolated: bool def __init__(self, plane_position: _Optional[_Union[Point, _Mapping]] = ..., annotation: _Optional[_Union[Box, _Mapping]] = ..., interpolated: bool = ...) -> None: ... class RLEBallDetection(_message.Message): __slots__ = ["detection", "count"] DETECTION_FIELD_NUMBER: _ClassVar[int] COUNT_FIELD_NUMBER: _ClassVar[int] detection: BallDetection count: int def __init__(self, detection: _Optional[_Union[BallDetection, _Mapping]] = ..., count: _Optional[int] = ...) -> None: ... class RLEDetectionHistory(_message.Message): __slots__ = ["detections"] DETECTIONS_FIELD_NUMBER: _ClassVar[int] detections: _containers.RepeatedCompositeFieldContainer[RLEBallDetection] def __init__(self, detections: _Optional[_Iterable[_Union[RLEBallDetection, _Mapping]]] = ...) -> None: ... class DetectionHistory(_message.Message): __slots__ = ["detections"] DETECTIONS_FIELD_NUMBER: _ClassVar[int] detections: _containers.RepeatedCompositeFieldContainer[BallDetection] def __init__(self, detections: _Optional[_Iterable[_Union[BallDetection, _Mapping]]] = ...) -> None: ... class Path(_message.Message): __slots__ = ["start_frame", "end_frame", "detections", "rle_detections", "not_present", "is_static"] 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_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: ... class IdentifierHistory(_message.Message): __slots__ = ["ball_identifier", "paths"] BALL_IDENTIFIER_FIELD_NUMBER: _ClassVar[int] PATHS_FIELD_NUMBER: _ClassVar[int] ball_identifier: int paths: _containers.RepeatedCompositeFieldContainer[Path] def __init__(self, ball_identifier: _Optional[int] = ..., paths: _Optional[_Iterable[_Union[Path, _Mapping]]] = ...) -> None: ... class Shot(_message.Message): __slots__ = ["identifier_histories"] IDENTIFIER_HISTORIES_FIELD_NUMBER: _ClassVar[int] identifier_histories: _containers.RepeatedCompositeFieldContainer[IdentifierHistory] def __init__(self, identifier_histories: _Optional[_Iterable[_Union[IdentifierHistory, _Mapping]]] = ...) -> None: ...