mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:06:37 +00:00
abc26d5c20
docs -> _docs
11 lines
212 B
Python
11 lines
212 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class OptimizationResult(BaseModel):
|
|
converged: bool
|
|
final_error: float
|
|
iterations_used: int
|
|
optimized_frames: list[int]
|
|
mean_reprojection_error: float = 0.0
|
|
|