StandardFrameDataΒΆ
- class standard_e2e.data_structures.StandardFrameData(**data)[source]ΒΆ
Bases:
BaseModelRepresents a single frame data in intermediate standardized format: Raw frame data -> StandardFrameData -> TransformedFrameData.
- Parameters:
timestamp (float)
frame_id (int)
segment_id (str)
dataset_name (str)
split (str)
global_position (Trajectory | None)
intent (Intent | None)
cameras (dict[CameraDirection, CameraData])
lidar (LidarData | None)
future_states (Trajectory | None)
past_states (Trajectory | None)
hd_map (HDMap | None)
frame_detections_3d (FrameDetections3D | None)
- global_positionΒΆ
Pose for the ego entity at this frame in global coordinates.
- Type:
Optional[Trajectory]
- camerasΒΆ
Camera data keyed by camera direction.
- Type:
- future_statesΒΆ
Future trajectory states relative to this frame.
- Type:
Optional[Trajectory]
- past_statesΒΆ
Past trajectory states leading up to this frame.
- Type:
Optional[Trajectory]
- hd_mapΒΆ
HD map snapshot in vehicle frame at this frameβs timestamp; consumed by
HDMapBEVAdapter(and future vector adapters). In-memory only β not persisted to.npz.- Type:
Optional[HDMap]
- frame_detections_3dΒΆ
3D detections present in the frame.
- Type:
Optional[FrameDetections3D]
- cameras: dict[CameraDirection, CameraData]ΒΆ
- frame_detections_3d: FrameDetections3D | NoneΒΆ
- future_states: Trajectory | NoneΒΆ
- global_position: Trajectory | NoneΒΆ
- past_states: Trajectory | NoneΒΆ