(files: Map<string, File>)
| 40 | * Prefers complete sparse/0 directories and binary files over text files. |
| 41 | */ |
| 42 | export function findColmapFiles(files: Map<string, File>): ColmapFileSelection { |
| 43 | return findColmapFilesInternal(files, { requirePoints3D: true }); |
| 44 | } |
| 45 | |
| 46 | export function findColmapCameraImageFiles(files: Map<string, File>): ColmapFileSelection { |
| 47 | return findColmapFilesInternal(files, { requirePoints3D: false }); |
no test coverage detected