[nodes] update MVS to aliceVision binaries

This commit is contained in:
Fabien Castan 2017-10-31 16:47:06 +01:00
parent 06a8cbaf45
commit eb85aee728
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ from meshroom.core import desc
class DepthMap(desc.CommandLineNode): class DepthMap(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/' internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'CMPMVS {mvsConfigValue} --createDepthmap' commandLine = 'aliceVision_depthMapEstimation --ini {mvsConfigValue}'
gpu = desc.Level.INTENSIVE gpu = desc.Level.INTENSIVE
mvsConfig = desc.File( mvsConfig = desc.File(

View file

@ -2,7 +2,7 @@ from meshroom.core import desc
class DepthMapFilter(desc.CommandLineNode): class DepthMapFilter(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/' internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'CMPMVS {mvsConfigValue} --filterDepthmap' commandLine = 'aliceVision_depthMapFiltering --ini {mvsConfigValue}'
gpu = desc.Level.NORMAL gpu = desc.Level.NORMAL
mvsConfig = desc.File( mvsConfig = desc.File(

View file

@ -2,7 +2,7 @@ from meshroom.core import desc
class Texturing(desc.CommandLineNode): class Texturing(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/' internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'CMPMVS {mvsConfigValue} --texturing' commandLine = 'aliceVision_texturing --ini {mvsConfigValue} {allParams}'
cpu = desc.Level.INTENSIVE cpu = desc.Level.INTENSIVE
ram = desc.Level.INTENSIVE ram = desc.Level.INTENSIVE