Files
gps-denied-desktop/models/results/flight_results.py
T
Oleksandr Bezdieniezhnykh abc26d5c20 initial structure implemented
docs -> _docs
2025-12-01 14:20:56 +02:00

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