mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-23 05:06:37 +00:00
initial structure implemented
docs -> _docs
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user