[nodes] aliceVision: update param names to "folder"

This commit is contained in:
Fabien Castan 2017-11-10 19:32:08 +01:00
parent d190012d1d
commit aa0f985077
5 changed files with 20 additions and 20 deletions

View file

@ -33,16 +33,16 @@ def photogrammetryPipeline(output='', inputFolder='', inputImages=[], inputViewp
input=cameraInit.output)
imageMatching = graph.addNewNode('ImageMatching',
input=featureExtraction.input,
featuresDirectory=featureExtraction.output,
featuresFolder=featureExtraction.output,
)
featureMatching = graph.addNewNode('FeatureMatching',
input=imageMatching.input,
featuresDirectory=imageMatching.featuresDirectory,
featuresFolder=imageMatching.featuresFolder,
imagePairsList=imageMatching.output)
structureFromMotion = graph.addNewNode('StructureFromMotion',
input=featureMatching.input,
featuresDirectory=featureMatching.featuresDirectory,
matchesDirectory=featureMatching.output)
featuresFolder=featureMatching.featuresFolder,
matchesFolder=featureMatching.output)
prepareDenseScene = graph.addNewNode('PrepareDenseScene',
input=structureFromMotion.output)
cameraConnection = graph.addNewNode('CameraConnection',

View file

@ -37,9 +37,9 @@ class FeatureMatching(desc.CommandLineNode):
joinChar=',',
),
desc.File(
name='featuresDirectory',
label='Features Directory',
description='''Path to a directory containing the extracted features.''',
name='featuresFolder',
label='Features Folder',
description='''Path to a folder containing the extracted features.''',
value='',
uid=[0],
),
@ -158,7 +158,7 @@ class FeatureMatching(desc.CommandLineNode):
desc.File(
name='output',
label='Output',
description='''Path to a directory in which computed matches will be stored. Optional parameters:''',
description='''Path to a folder in which computed matches will be stored.''',
value='{cache}/{nodeType}/{uid0}/',
uid=[],
),

View file

@ -16,9 +16,9 @@ class ImageMatching(desc.CommandLineNode):
uid=[0],
),
desc.File(
name='featuresDirectory',
label='Features Directory',
description='''Directory containing the extracted features and descriptors. By default, it is the directory containing the SfMData.''',
name='featuresFolder',
label='Features Folder',
description='''Folder containing the extracted features and descriptors. By default, it is the folder containing the SfMData.''',
value='',
uid=[0],
),

View file

@ -47,7 +47,7 @@ class PrepareDenseScene(desc.CommandLineNode):
desc.File(
name='output',
label='Output',
description='''Output directory.''',
description='''Output folder.''',
value='{cache}/{nodeType}/{uid0}/',
uid=[],
)

View file

@ -16,16 +16,16 @@ class StructureFromMotion(desc.CommandLineNode):
),
desc.File(
name='featuresDirectory',
label='Features Directory',
description='''Path to a directory containing the extracted features.''',
name='featuresFolder',
label='Features Folder',
description='''Path to a folder containing the extracted features.''',
value='',
uid=[0],
),
desc.File(
name='matchesDirectory',
label='Matches Directory',
description='''Path to a directory in which computed matches are stored. Optional parameters:''',
name='matchesFolder',
label='Matches Folder',
description='''Path to a folder in which computed matches are stored.''',
value='',
uid=[0],
),
@ -107,9 +107,9 @@ class StructureFromMotion(desc.CommandLineNode):
uid=[],
),
desc.File(
name='extraInfoDirectory',
name='extraInfoFolder',
label='Output',
description='''Directory for intermediate reconstruction files and additional reconstruction information files.''',
description='''Folder for intermediate reconstruction files and additional reconstruction information files.''',
value='{cache}/{nodeType}/{uid0}/',
uid=[],
),