(dataroot)
| 65 | |
| 66 | |
| 67 | def get_image_paths(dataroot): |
| 68 | paths = None # return None if dataroot is None |
| 69 | if dataroot is not None: |
| 70 | paths = sorted(_get_paths_from_images(dataroot)) |
| 71 | return paths |
| 72 | |
| 73 | |
| 74 | def _get_paths_from_images(path): |
no test coverage detected