Skip to content

Commit

Permalink
fix(openmvs): export the undistorted reconstruction
Browse files Browse the repository at this point in the history
Fixes #192
  • Loading branch information
paulinus committed Jul 3, 2017
1 parent 41cea9e commit 9a9b40a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opensfm/commands/export_openmvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def add_arguments(self, parser):

def run(self, args):
data = dataset.DataSet(args.dataset)
reconstructions = data.load_reconstruction()
graph = data.load_tracks_graph()
reconstructions = data.load_undistorted_reconstruction()
graph = data.load_undistorted_tracks_graph()

if reconstructions:
self.export(reconstructions[0], graph, data)
Expand Down

0 comments on commit 9a9b40a

Please sign in to comment.