Meta data about Gaussian scene.
| 44 | |
| 45 | |
| 46 | class SceneMetaData(NamedTuple): |
| 47 | """Meta data about Gaussian scene.""" |
| 48 | |
| 49 | focal_length_px: float |
| 50 | resolution_px: tuple[int, int] |
| 51 | color_space: cs_utils.ColorSpace |
| 52 | |
| 53 | |
| 54 | def get_unprojection_matrix( |
no outgoing calls
no test coverage detected