({
camerasFile = textFile('cameras.txt', 'camera text'),
imagesFile = textFile('images.txt', 'image text'),
points3DFile = textFile('points3D.txt', 'point text'),
}: Partial<ColmapParserFiles> = {})
| 23 | } |
| 24 | |
| 25 | function createFiles({ |
| 26 | camerasFile = textFile('cameras.txt', 'camera text'), |
| 27 | imagesFile = textFile('images.txt', 'image text'), |
| 28 | points3DFile = textFile('points3D.txt', 'point text'), |
| 29 | }: Partial<ColmapParserFiles> = {}): ColmapParserFiles { |
| 30 | return { camerasFile, imagesFile, points3DFile }; |
| 31 | } |
| 32 | |
| 33 | function createParserDeps() { |
| 34 | const camera = buildCamera({ cameraId: 1 }); |
no test coverage detected