We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44edaea commit a591f26Copy full SHA for a591f26
1 file changed
opensfm/test/data_generation.py
@@ -16,8 +16,10 @@ def create_berlin_test_folder(tmpdir):
16
os.path.join(path, 'images'))
17
os.symlink(os.path.abspath('data/berlin/masks'),
18
os.path.join(path, 'masks'))
19
- os.symlink(os.path.abspath('data/berlin/gcp_list.txt'),
20
- os.path.join(path, 'gcp_list.txt'))
+ os.symlink(os.path.abspath('data/berlin/config.yaml'),
+ 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'))
23
return opensfm.dataset.DataSet(path)
24
25
0 commit comments