kopia lustrzana https://github.com/OpenDroneMap/ODM
Small tweak on split-merge warning
rodzic
3200dd27cd
commit
a182f1bba3
|
@ -35,9 +35,13 @@ class ODMSplitStage(types.ODM_Stage):
|
||||||
if io.file_exists(image_groups_file) or reconstruction.has_geotagged_photos():
|
if io.file_exists(image_groups_file) or reconstruction.has_geotagged_photos():
|
||||||
gps_info_available = True
|
gps_info_available = True
|
||||||
|
|
||||||
outputs['large'] = len(photos) > args.split
|
should_split = len(photos) > args.split
|
||||||
|
if should_split and not gps_info_available:
|
||||||
|
log.ODM_WARNING('Could not perform split-merge as GPS information in photos or image_groups.txt is missing.')
|
||||||
|
|
||||||
if outputs['large'] and gps_info_available:
|
outputs['large'] = should_split and gps_info_available
|
||||||
|
|
||||||
|
if outputs['large']:
|
||||||
# If we have a cluster address, we'll use a distributed workflow
|
# If we have a cluster address, we'll use a distributed workflow
|
||||||
local_workflow = not bool(args.sm_cluster)
|
local_workflow = not bool(args.sm_cluster)
|
||||||
|
|
||||||
|
@ -180,9 +184,6 @@ class ODMSplitStage(types.ODM_Stage):
|
||||||
else:
|
else:
|
||||||
log.ODM_WARNING('Found a split done file in: %s' % split_done_file)
|
log.ODM_WARNING('Found a split done file in: %s' % split_done_file)
|
||||||
else:
|
else:
|
||||||
if not gps_info_available:
|
|
||||||
log.ODM_WARNING('Could not perform split-merge as GPS information in photos or image_groups.txt is missing.')
|
|
||||||
|
|
||||||
log.ODM_INFO("Normal dataset, will process all at once.")
|
log.ODM_INFO("Normal dataset, will process all at once.")
|
||||||
self.progress = 0.0
|
self.progress = 0.0
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue