[doc] Replace references to Meshroom 2021.1.0 with 2023.1.0

This commit is contained in:
Candice Bentéjac 2023-03-24 17:02:03 +01:00 committed by Fabien Castan
parent e1408eed2a
commit 0c467760a6
2 changed files with 4 additions and 4 deletions

View file

@ -114,14 +114,14 @@ python bin/meshroom_batch --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
To use Meshroom (ui) without building AliceVision
* Download a [release](https://github.com/alicevision/meshroom/releases)
* Checkout corresponding Meshroom (ui) version/tag to avoid versions incompatibilities
* `LD_LIBRARY_PATH=~/foo/Meshroom-2021.1.0/aliceVision/lib/ PATH=$PATH:~/foo/Meshroom-2021.1.0/aliceVision/bin/ PYTHONPATH=$PWD python3 meshroom/ui`
* `LD_LIBRARY_PATH=~/foo/Meshroom-2023.1.0/aliceVision/lib/ PATH=$PATH:~/foo/Meshroom-2023.1.0/aliceVision/bin/ PYTHONPATH=$PWD python3 meshroom/ui`
## Start and Debug Meshroom in an IDE
PyCharm Community is free IDE which can be used. To start and debug a project with that IDE,
right-click on `Meshroom/ui/__main__.py` > `Debug`, then `Edit Configuration`, in `Environment variables` :
* If you want to use aliceVision built by yourself add: `PATH=$PATH:/foo/build/Linux-x86_64/`
* If you want to use aliceVision release add: `LD_LIBRARY_PATH=/foo/Meshroom-2021.1.0/aliceVision/lib/;PATH=$PATH:/foo/Meshroom-2021.1.0/aliceVision/bin/` (Make sure that you are on the branch matching the right version)
* If you want to use aliceVision release add: `LD_LIBRARY_PATH=/foo/Meshroom-2023.1.0/aliceVision/lib/;PATH=$PATH:/foo/Meshroom-2023.1.0/aliceVision/bin/` (Make sure that you are on the branch matching the right version)
![image](https://user-images.githubusercontent.com/937836/127321375-3bf78e73-569d-414a-8649-de0307adf794.png)

View file

@ -3,8 +3,8 @@ export MESHROOM_ROOT="$(dirname "$(readlink -f "${BASH_SOURCE[0]}" )" )"
export PYTHONPATH=$MESHROOM_ROOT:$PYTHONPATH
# using existing alicevision release
#export LD_LIBRARY_PATH=/foo/Meshroom-2021.1.0/aliceVision/lib/
#export PATH=$PATH:/foo/Meshroom-2021.1.0/aliceVision/bin/
#export LD_LIBRARY_PATH=/foo/Meshroom-2023.1.0/aliceVision/lib/
#export PATH=$PATH:/foo/Meshroom-2023.1.0/aliceVision/bin/
# using alicevision built source
#export PATH=$PATH:/foo/build/Linux-x86_64/