(
self,
path: str,
save_custom: bool = True,
image_data_format: ImageDataFormat = None,
num_workers: int = 0,
)
| 238 | return scan_dirpath |
| 239 | |
| 240 | def save( |
| 241 | self, |
| 242 | path: str, |
| 243 | save_custom: bool = True, |
| 244 | image_data_format: ImageDataFormat = None, |
| 245 | num_workers: int = 0, |
| 246 | ): |
| 247 | path = self._save_dir(path, create_dir=True) |
| 248 | return self.scan.save(path, save_custom, image_data_format, num_workers) |
| 249 | |
| 250 | |
| 251 | def get_nargs_for_basic_type(base_type: type): |
no test coverage detected