Skip to content

Commit 1478015

Browse files
committed
[setup] fix default filenames in frozen configuration
* voctree: missing SIFT descriptor type * missing "aliceVision" folder for AliceVision COPYING.md
1 parent 2361306 commit 1478015

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

meshroom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def addToEnvPath(var, val, index=-1):
7474
aliceVisionShareDir = os.path.join(aliceVisionDir, "share", "aliceVision")
7575
qtPluginsDir = os.path.join(rootDir, "qtPlugins")
7676
sensorDBPath = os.path.join(aliceVisionShareDir, "cameraSensors.db")
77-
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.tree")
77+
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.SIFT.tree")
7878

7979
env = {
8080
'PATH': aliceVisionBinDir,

meshroom/ui/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def licensesModel(self):
102102
},
103103
{
104104
"title": "AliceVision",
105-
"localUrl": os.path.join(rootDir, "aliceVision", "share", "COPYING.md"),
105+
"localUrl": os.path.join(rootDir, "aliceVision", "share", "aliceVision", "COPYING.md"),
106106
"onlineUrl": "https://raw.githubusercontent.com/alicevision/AliceVision/develop/COPYING.md"
107107
}
108108
]

0 commit comments

Comments
 (0)