Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Lanthony <yann.lanthony@gmail.com>2018-08-09 19:57:18 +0300
committerGitHub <noreply@github.com>2018-08-09 19:57:18 +0300
commite5376b9c93eaed1eac32454064b3af327a691980 (patch)
tree3fded539bf0d9c27a3b8142c841f214c195abe20
parent2361306ae13f34e9059fb08b0cb9aff0fed71575 (diff)
parent6cd052218360fc5f39eeb31d38539e656b3854b5 (diff)
Release 2018.1.0v2018.1.0
Merge pull request #173 from alicevision/release_2018.1.0
-rw-r--r--CHANGES.md9
-rw-r--r--meshroom/__init__.py4
-rw-r--r--meshroom/ui/app.py2
3 files changed, 12 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
new file mode 100644
index 00000000..2e7cb3a9
--- /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 9c53f73a..78d9816e 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 setupEnvironment():
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 62b669dc..dba4c68f 100644
--- a/meshroom/ui/app.py
+++ b/meshroom/ui/app.py
@@ -102,7 +102,7 @@ class MeshroomApp(QApplication):
},
{
"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"
}
]