mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:06:37 +00:00
abc26d5c20
docs -> _docs
13 lines
253 B
Python
13 lines
253 B
Python
import numpy as np
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class Matches(BaseModel):
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
matches: np.ndarray
|
|
scores: np.ndarray
|
|
keypoints1: np.ndarray
|
|
keypoints2: np.ndarray
|
|
|