From 14780157c5bc1c1abe8965949bc0f1f864990ac1 Mon Sep 17 00:00:00 2001 From: Yann Lanthony Date: Thu, 9 Aug 2018 16:29:07 +0200 Subject: [PATCH] [setup] fix default filenames in frozen configuration * voctree: missing SIFT descriptor type * missing "aliceVision" folder for AliceVision COPYING.md --- meshroom/__init__.py | 2 +- meshroom/ui/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meshroom/__init__.py b/meshroom/__init__.py index 9c53f73a63..d5d4f8e679 100644 --- a/meshroom/__init__.py +++ b/meshroom/__init__.py @@ -74,7 +74,7 @@ def addToEnvPath(var, val, index=-1): aliceVisionShareDir = os.path.join(aliceVisionDir, "share", "aliceVision") qtPluginsDir = os.path.join(rootDir, "qtPlugins") sensorDBPath = os.path.join(aliceVisionShareDir, "cameraSensors.db") - voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.tree") + voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.SIFT.tree") env = { 'PATH': aliceVisionBinDir, diff --git a/meshroom/ui/app.py b/meshroom/ui/app.py index 62b669dc78..dba4c68fa3 100644 --- a/meshroom/ui/app.py +++ b/meshroom/ui/app.py @@ -102,7 +102,7 @@ def licensesModel(self): }, { "title": "AliceVision", - "localUrl": os.path.join(rootDir, "aliceVision", "share", "COPYING.md"), + "localUrl": os.path.join(rootDir, "aliceVision", "share", "aliceVision", "COPYING.md"), "onlineUrl": "https://raw.githubusercontent.com/alicevision/AliceVision/develop/COPYING.md" } ]