mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-22 21:46:28 +02:00
[nodes] CamPairs renamed to CameraConnection
This commit is contained in:
parent
041f98ae8a
commit
06a8cbaf45
2 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ def photogrammetryPipeline(inputFolder='', inputImages=[], inputViewpoints=[]):
|
|||
matchesDirectory=featureMatching.output)
|
||||
prepareDenseScene = graph.addNewNode('PrepareDenseScene',
|
||||
input=structureFromMotion.output)
|
||||
camPairs = graph.addNewNode('CamPairs',
|
||||
camPairs = graph.addNewNode('CameraConnection',
|
||||
mvsConfig=prepareDenseScene.mvsConfig)
|
||||
depthMap = graph.addNewNode('DepthMap',
|
||||
mvsConfig=camPairs.mvsConfig)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
from meshroom.core import desc
|
||||
|
||||
class CamPairs(desc.CommandLineNode):
|
||||
class CameraConnection(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'CMPMVS {mvsConfigValue} --computeCamPairs'
|
||||
commandLine = 'aliceVision_cameraConnection --ini {mvsConfigValue}'
|
||||
|
||||
mvsConfig = desc.File(
|
||||
label='MVS Configuration file',
|
Loading…
Add table
Add a link
Reference in a new issue