Hi
I like to export the orthorectified images one by one in a folder. In the GUI this can be done using "Tools" - "Export" - "Export Orthophotos" and selecting a folder and providing a pattern for the filenames ("{filename}.tif")
How is the corresponding function in the Python API called? exportOrthophotos? And if yes, what is the correct syntax for "PATH"?
I tried:
chunk.exportOrthophotos("E:\Temp")
> Error: Unsupported extension:
chunk.exportOrthophotos("E:\Temp\*.tif")
> Error: bad allocation
chunk.exportOrthophotos("E:\Temp\{filename}.tif")
> Error: bad allocation
E:\Temp exists, the chunk is processed and has a Dense Cloud, 3D Model and DEM. Any suggestions?