StandardFrameDataΒΆ

class standard_e2e.data_structures.StandardFrameData(**data)[source]ΒΆ

Bases: BaseModel

Represents a single frame data in intermediate standardized format: Raw frame data -> StandardFrameData -> TransformedFrameData.

Parameters:
timestampΒΆ

Timestamp of the frame in seconds.

Type:

float

frame_idΒΆ

Unique identifier of the frame within a sequence.

Type:

int

segment_idΒΆ

Unique identifier of the segment this frame belongs to.

Type:

str

dataset_nameΒΆ

Name of the dataset this frame belongs to.

Type:

str

splitΒΆ

Dataset split (e.g., β€œtrain”, β€œval”, β€œtest”).

Type:

str

global_positionΒΆ

Pose for the ego entity at this frame in global coordinates.

Type:

Optional[Trajectory]

intentΒΆ

Predicted or annotated intent associated with the frame.

Type:

Optional[Intent]

camerasΒΆ

Camera data keyed by camera direction.

Type:

dict[CameraDirection, CameraData]

lidarΒΆ

LiDAR data for the frame, if available.

Type:

Optional[LidarData]

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]

aux_dataΒΆ

Additional auxiliary data.

Type:

Optional[Dict[str, Any]]

extra_index_dataΒΆ

Extra indexing or lookup data.

Type:

Optional[Dict[str, Any]]

aux_data: Dict[str, Any] | NoneΒΆ
cameras: dict[CameraDirection, CameraData]ΒΆ
dataset_name: strΒΆ
extra_index_data: Dict[str, Any] | NoneΒΆ
frame_detections_3d: FrameDetections3D | NoneΒΆ
frame_id: intΒΆ
future_states: Trajectory | NoneΒΆ
global_position: Trajectory | NoneΒΆ
hd_map: HDMap | NoneΒΆ
intent: Intent | NoneΒΆ
lidar: LidarData | NoneΒΆ
past_states: Trajectory | NoneΒΆ
segment_id: strΒΆ
split: strΒΆ
timestamp: floatΒΆ