mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:26:37 +00:00
abc26d5c20
docs -> _docs
15 lines
302 B
Python
15 lines
302 B
Python
import numpy as np
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class RotationResult(BaseModel):
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
matched: bool
|
|
initial_angle: float
|
|
precise_angle: float
|
|
confidence: float
|
|
homography: np.ndarray
|
|
inlier_count: int = 0
|
|
|