mirror of
https://github.com/EyeTrackVR/EyeTrackVR.git
synced 2025-09-26 23:09:28 +08:00
7 lines
130 B
Python
7 lines
130 B
Python
from typing import Tuple, NamedTuple
|
|
|
|
|
|
class CameraModel(NamedTuple):
|
|
focal_length: float
|
|
resolution: Tuple[float, float]
|