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-06-14 12:19:13 +0300
committerYann Lanthony <yann.lanthony@gmail.com>2018-06-14 12:19:13 +0300
commitf91c2495bd7d58fb75bb45e0993c35c1fb4940c1 (patch)
tree5355ca665b7b6d6277259c1dc28142d5399f978f /README.md
parent5bbb7ceef2ae18316fbfd6bb6e42fd74f99e9fa2 (diff)
[readme] fix typos + cross-platform commands
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.md b/README.md
index ed057113..37ecb01c 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Learn more details about the pipeline on [AliceVision website](http://alicevisio
See [results of the pipeline on sketchfab](http://sketchfab.com/AliceVision).
-Continous integration:
+Continuous integration:
* Windows: [![Build status](https://ci.appveyor.com/api/projects/status/25sd7lfr3v0rnvni/branch/develop?svg=true)](https://ci.appveyor.com/project/AliceVision/meshroom/branch/develop)
## Photogrammetry
@@ -36,11 +36,14 @@ pip install -r requirements.txt
## Start Meshroom
-You need to have [AliceVision](https://github.com/alicevision/AliceVision) installation in your PATH and LD_LIBRARY_PATH.
+You need to have [AliceVision](https://github.com/alicevision/AliceVision) installation in your PATH (and LD_LIBRARY_PATH on Linux/macOS).
- __Launch the User Interface__
-```
+```bash
+# Windows
+set PYTHONPATH=%CD% && python meshroom/ui
+# Linux/macOS
PYTHONPATH=$PWD python meshroom/ui
```
@@ -50,7 +53,8 @@ You may need to adjust the folder `/usr/lib/nvidia-340` with the correct driver
- __Launch a 3D reconstruction in command line__
+```bash
+# Windows: set PYTHONPATH=%CD% &&
+# Linux/macOS: PYTHONPATH=$PWD
+python bin/meshroom_photogrammetry --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
```
-PYTHONPATH=$PWD python bin/meshroom_photogrammetry --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
-```
-