diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000000..2e7cb3a958 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,9 @@ +# Meshroom Changelog + +For algorithmic changes related to the photogrammetric pipeline, +please refer to [AliceVision changelog](https://github.com/alicevision/AliceVision/blob/develop/CHANGES.md). + +## Release 2018.1.0 + + First release of Meshroom. + Based on [AliceVision 2.0.0](https://github.com/alicevision/AliceVision/tree/v2.0.0). \ No newline at end of file diff --git a/meshroom/__init__.py b/meshroom/__init__.py index 9c53f73a63..78d9816eb2 100644 --- a/meshroom/__init__.py +++ b/meshroom/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2018.1" +__version__ = "2018.1.0" import logging from enum import Enum @@ -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" } ]