Spaces:
Running
Running
File size: 404 Bytes
7ef7e3c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from typing import List
from pydantic import BaseModel
class ImagesInput(BaseModel):
data: List[str] = []
max_keypoints: List[int] = []
timestamps: List[str] = []
grayscale: bool = False
image_hw: List[List[int]] = [[], []]
feature_type: int = 0
rotates: List[float] = []
scales: List[float] = []
reference_points: List[List[float]] = []
binarize: bool = False
|