Hello there,
Is there any good way to catch each process done successfully?
I dont see any return values.
also, sometimes [progress] dont show 100 but starts the other stage.
This happens especially on chunk.buildDepthMaps()
Is there any good ways to validate if the stage was successfully completed?
Thank you,
Mincho
..................................................................
chunk = doc.addChunk()
chunk.addPhotos(photos)
chunk.matchPhotos(keypoint_limit = 40000, tiepoint_limit = 10000, generic_preselection = True, reference_preselection = True)
chunk.alignCameras()
chunk.buildDepthMaps(downscale = 2, filter_mode = Metashape.MildFiltering)
chunk.buildModel(source_data = Metashape.DepthMapsData)
chunk.buildUV(page_count = 2, texture_size = 4096)
chunk.buildTexture(texture_size = 4096, ghosting_filter = True)
doc.save()