Skip to content

Commit

Permalink
fix: make sure we use the actual config file of berlin and the GCPs
Browse files Browse the repository at this point in the history
  • Loading branch information
YanNoun committed Aug 11, 2020
1 parent 44edaea commit a591f26
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions opensfm/test/data_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ def create_berlin_test_folder(tmpdir):
os.path.join(path, 'images'))
os.symlink(os.path.abspath('data/berlin/masks'),
os.path.join(path, 'masks'))
os.symlink(os.path.abspath('data/berlin/gcp_list.txt'),
os.path.join(path, 'gcp_list.txt'))
os.symlink(os.path.abspath('data/berlin/config.yaml'),
os.path.join(path, 'config.yaml'))
os.symlink(os.path.abspath('data/berlin/ground_control_points.json'),
os.path.join(path, 'ground_control_points.json'))
return opensfm.dataset.DataSet(path)


Expand Down

0 comments on commit a591f26

Please sign in to comment.