mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-03 09:57:22 +02:00
[bin] rename meshroom_photogrammetry as meshroom_batch
This commit is contained in:
parent
7b3523d44c
commit
37ffd7f990
3 changed files with 3 additions and 3 deletions
|
@ -90,7 +90,7 @@ You may need to adjust the folder `/usr/lib/nvidia-340` with the correct driver
|
|||
```bash
|
||||
# Windows: set PYTHONPATH=%CD% &&
|
||||
# Linux/macOS: PYTHONPATH=$PWD
|
||||
python bin/meshroom_photogrammetry --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
|
||||
python bin/meshroom_batch --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
|
||||
```
|
||||
|
||||
|
||||
|
|
2
bin/meshroom_photogrammetry → bin/meshroom_batch
Executable file → Normal file
2
bin/meshroom_photogrammetry → bin/meshroom_batch
Executable file → Normal file
|
@ -74,7 +74,7 @@ def getOnlyNodeOfType(g, nodeType):
|
|||
""" Helper function to get a node of 'nodeType' in the graph 'g' and raise if no or multiple candidates. """
|
||||
nodes = g.nodesOfType(nodeType)
|
||||
if len(nodes) != 1:
|
||||
raise RuntimeError("meshroom_photogrammetry requires a pipeline graph with exactly one '{}' node, {} found."
|
||||
raise RuntimeError("meshroom_batch requires a pipeline graph with exactly one '{}' node, {} found."
|
||||
.format(nodeType, len(nodes)))
|
||||
return nodes[0]
|
||||
|
2
setup.py
2
setup.py
|
@ -119,7 +119,7 @@ meshroomExe = PlatformExecutable(
|
|||
)
|
||||
|
||||
meshroomPhotog = PlatformExecutable(
|
||||
"bin/meshroom_photogrammetry"
|
||||
"bin/meshroom_batch"
|
||||
)
|
||||
|
||||
meshroomCompute = PlatformExecutable(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue