Skip to content

Commit 5431156

Browse files
authored
Merge pull request #1297 from alicevision/dev/renameBatchTool
[bin] rename meshroom_photogrammetry as meshroom_batch
2 parents b4f26e4 + 37ffd7f commit 5431156

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ You may need to adjust the folder `/usr/lib/nvidia-340` with the correct driver
9090
```bash
9191
# Windows: set PYTHONPATH=%CD% &&
9292
# Linux/macOS: PYTHONPATH=$PWD
93-
python bin/meshroom_photogrammetry --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
93+
python bin/meshroom_batch --input INPUT_IMAGES_FOLDER --output OUTPUT_FOLDER
9494
```
9595

9696

bin/meshroom_photogrammetry renamed to bin/meshroom_batch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def getOnlyNodeOfType(g, nodeType):
7474
""" Helper function to get a node of 'nodeType' in the graph 'g' and raise if no or multiple candidates. """
7575
nodes = g.nodesOfType(nodeType)
7676
if len(nodes) != 1:
77-
raise RuntimeError("meshroom_photogrammetry requires a pipeline graph with exactly one '{}' node, {} found."
77+
raise RuntimeError("meshroom_batch requires a pipeline graph with exactly one '{}' node, {} found."
7878
.format(nodeType, len(nodes)))
7979
return nodes[0]
8080

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self, script, initScript=None, base=None, targetName=None, icons=No
119119
)
120120

121121
meshroomPhotog = PlatformExecutable(
122-
"bin/meshroom_photogrammetry"
122+
"bin/meshroom_batch"
123123
)
124124

125125
meshroomCompute = PlatformExecutable(

0 commit comments

Comments
 (0)