diff --git a/VERSION b/VERSION index a3df0a69..6f4eebdf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 +0.8.1 diff --git a/opendm/osfm.py b/opendm/osfm.py index 267a7695..7dfd6982 100644 --- a/opendm/osfm.py +++ b/opendm/osfm.py @@ -200,7 +200,7 @@ class OSFMContext: try: reconstruction_file = self.path("reconstruction.json") with open(output, 'w') as fout: - fout.write(json.dumps(camera.get_cameras_from_opensfm(reconstruction_file))) + fout.write(json.dumps(camera.get_cameras_from_opensfm(reconstruction_file), indent=4)) except Exception as e: log.ODM_WARNING("Cannot export cameras to %s. %s." % (output, str(e))) else: