Skip to content

Commit 9a9b40a

Browse files
committed
fix(openmvs): export the undistorted reconstruction
Fixes #192
1 parent 41cea9e commit 9a9b40a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opensfm/commands/export_openmvs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def add_arguments(self, parser):
1919

2020
def run(self, args):
2121
data = dataset.DataSet(args.dataset)
22-
reconstructions = data.load_reconstruction()
23-
graph = data.load_tracks_graph()
22+
reconstructions = data.load_undistorted_reconstruction()
23+
graph = data.load_undistorted_tracks_graph()
2424

2525
if reconstructions:
2626
self.export(reconstructions[0], graph, data)

0 commit comments

Comments
 (0)