mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:46:36 +00:00
abc26d5c20
docs -> _docs
18 lines
349 B
Python
18 lines
349 B
Python
from pydantic import BaseModel
|
|
from .frame_result import FrameResult
|
|
|
|
|
|
class FlightStatistics(BaseModel):
|
|
total_frames: int
|
|
processed_frames: int
|
|
refined_frames: int
|
|
mean_confidence: float
|
|
processing_time: float
|
|
|
|
|
|
class FlightResults(BaseModel):
|
|
flight_id: str
|
|
frames: list[FrameResult]
|
|
statistics: FlightStatistics
|
|
|