kopia lustrzana https://github.com/OpenDroneMap/ODM
Check if force-focal/force-ccd arguments are given
rodzic
a7e283c25e
commit
f7c1029fb7
4
run.py
4
run.py
|
@ -340,14 +340,14 @@ def prepare_objects():
|
||||||
fileObject["width"] = int(match.group(1).strip())
|
fileObject["width"] = int(match.group(1).strip())
|
||||||
fileObject["height"] = int(match.group(2).strip())
|
fileObject["height"] = int(match.group(2).strip())
|
||||||
|
|
||||||
if '--force-focal' not in args:
|
if args.force_focal is None:
|
||||||
match = re.search(":[\ ]*([0-9\.]*)mm", file_focal)
|
match = re.search(":[\ ]*([0-9\.]*)mm", file_focal)
|
||||||
if match:
|
if match:
|
||||||
fileObject["focal"] = float((match.group()[1:-2]).strip())
|
fileObject["focal"] = float((match.group()[1:-2]).strip())
|
||||||
else:
|
else:
|
||||||
fileObject["focal"] = args.force_focal
|
fileObject["focal"] = args.force_focal
|
||||||
|
|
||||||
if '--force-ccd' not in args:
|
if args.force_ccd is None:
|
||||||
match = re.search(":[\ ]*([0-9\.]*)mm", file_ccd)
|
match = re.search(":[\ ]*([0-9\.]*)mm", file_ccd)
|
||||||
if match:
|
if match:
|
||||||
fileObject["ccd"] = float(match.group()[1:-2].strip())
|
fileObject["ccd"] = float(match.group()[1:-2].strip())
|
||||||
|
|
Ładowanie…
Reference in New Issue