Skip to content

Commit a591f26

Browse files
committed
fix: make sure we use the actual config file of berlin and the GCPs
1 parent 44edaea commit a591f26

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

opensfm/test/data_generation.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ def create_berlin_test_folder(tmpdir):
1616
os.path.join(path, 'images'))
1717
os.symlink(os.path.abspath('data/berlin/masks'),
1818
os.path.join(path, 'masks'))
19-
os.symlink(os.path.abspath('data/berlin/gcp_list.txt'),
20-
os.path.join(path, 'gcp_list.txt'))
19+
os.symlink(os.path.abspath('data/berlin/config.yaml'),
20+
os.path.join(path, 'config.yaml'))
21+
os.symlink(os.path.abspath('data/berlin/ground_control_points.json'),
22+
os.path.join(path, 'ground_control_points.json'))
2123
return opensfm.dataset.DataSet(path)
2224

2325

0 commit comments

Comments
 (0)