kopia lustrzana https://github.com/OpenDroneMap/ODM
Do not allow RS with non-georeferenced datasets
rodzic
7bd81a93a2
commit
73887c6bcf
|
@ -330,3 +330,8 @@ class ODMLoadDatasetStage(types.ODM_Stage):
|
||||||
log.ODM_WARNING("No omega/phi/kappa angles found in input photos (%s), switching sfm-algorithm to incremental" % p.filename)
|
log.ODM_WARNING("No omega/phi/kappa angles found in input photos (%s), switching sfm-algorithm to incremental" % p.filename)
|
||||||
args.sfm_algorithm = 'incremental'
|
args.sfm_algorithm = 'incremental'
|
||||||
break
|
break
|
||||||
|
|
||||||
|
# Rolling shutter cannot be done in non-georeferenced datasets
|
||||||
|
if args.rolling_shutter and not reconstruction.is_georeferenced():
|
||||||
|
log.ODM_WARNING("Reconstruction is not georeferenced, disabling rolling shutter correction")
|
||||||
|
args.rolling_shutter = False
|
||||||
|
|
Ładowanie…
Reference in New Issue