Function
load_objs_as_meshes
(files: List[str],
device: Optional[Union[torch.device, str]] = None,
load_textures: bool = True,
**kwargs)
Source from the content-addressed store, hash-verified
| 130 | |
| 131 | |
| 132 | def load_objs_as_meshes(files: List[str], |
| 133 | device: Optional[Union[torch.device, str]] = None, |
| 134 | load_textures: bool = True, |
| 135 | **kwargs) -> Meshes: |
| 136 | if not isinstance(files, list): |
| 137 | files = [files] |
| 138 | return _load_objs_as_meshes(files=files, |
| 139 | device=device, |
| 140 | load_textures=load_textures, |
| 141 | **kwargs) |
| 142 | |
| 143 | |
| 144 | def load_plys_as_meshes( |
Tested by
no test coverage detected