Fixed --fast-orthophoto

Former-commit-id: f042118b21
pull/1161/head
Piero Toffanin 2018-07-04 13:55:08 -04:00
rodzic 918ac365bc
commit 625f9326c3
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -557,8 +557,9 @@ def config():
sys.exit(1)
if args.fast_orthophoto:
log.ODM_INFO('Fast orthophoto is turned on, automatically setting --skip-3dmodel')
log.ODM_INFO('Fast orthophoto is turned on, automatically setting --skip-3dmodel and --use-opensfm-dense')
args.skip_3dmodel = True
args.use_opensfm_dense = True
if args.dtm and args.pc_classify == 'none':
log.ODM_INFO("DTM is turned on, automatically turning on point cloud classification")

Wyświetl plik

@ -36,7 +36,7 @@ def create_dems(filenames, demtype, radius=['0.56'], gapfill=False,
with get_reusable_executor(max_workers=max_workers, timeout=None) as e:
fouts = list(e.map(create_dem_for_radius, radius))
fnames = {}
# convert from list of dicts, to dict of lists
for product in fouts[0].keys():