(fromName: string, to: CameraModelId)
| 338 | } |
| 339 | |
| 340 | function incompatible(fromName: string, to: CameraModelId): ConversionResult { |
| 341 | return { |
| 342 | type: 'incompatible', |
| 343 | reason: `Cannot convert ${fromName} to ${getCameraModelColmapName(to)}`, |
| 344 | }; |
| 345 | } |
no test coverage detected