mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-24 03:57:28 +02:00
[nodes] aliceVision: update param names to "folder"
This commit is contained in:
parent
d190012d1d
commit
aa0f985077
5 changed files with 20 additions and 20 deletions
|
@ -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',
|
||||
|
|
|
@ -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=[],
|
||||
),
|
||||
|
|
|
@ -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],
|
||||
),
|
||||
|
|
|
@ -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=[],
|
||||
)
|
||||
|
|
|
@ -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=[],
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue