File size: 313 Bytes
2568013 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from dataclasses import dataclass
from .view_sampler import ViewSamplerCfg
@dataclass
class DatasetCfgCommon:
original_image_shape: list[int]
input_image_shape: list[int]
background_color: list[float]
cameras_are_circular: bool
overfit_to_scene: str | None
view_sampler: ViewSamplerCfg
|