mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:16:36 +00:00
abc26d5c20
docs -> _docs
15 lines
301 B
Python
15 lines
301 B
Python
import numpy as np
|
|
from pydantic import BaseModel, ConfigDict
|
|
from .image_metadata import ImageMetadata
|
|
|
|
|
|
class ImageData(BaseModel):
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
flight_id: str
|
|
sequence: int
|
|
filename: str
|
|
image: np.ndarray
|
|
metadata: ImageMetadata
|
|
|