mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-25 12:37:33 +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)
|
input=cameraInit.output)
|
||||||
imageMatching = graph.addNewNode('ImageMatching',
|
imageMatching = graph.addNewNode('ImageMatching',
|
||||||
input=featureExtraction.input,
|
input=featureExtraction.input,
|
||||||
featuresDirectory=featureExtraction.output,
|
featuresFolder=featureExtraction.output,
|
||||||
)
|
)
|
||||||
featureMatching = graph.addNewNode('FeatureMatching',
|
featureMatching = graph.addNewNode('FeatureMatching',
|
||||||
input=imageMatching.input,
|
input=imageMatching.input,
|
||||||
featuresDirectory=imageMatching.featuresDirectory,
|
featuresFolder=imageMatching.featuresFolder,
|
||||||
imagePairsList=imageMatching.output)
|
imagePairsList=imageMatching.output)
|
||||||
structureFromMotion = graph.addNewNode('StructureFromMotion',
|
structureFromMotion = graph.addNewNode('StructureFromMotion',
|
||||||
input=featureMatching.input,
|
input=featureMatching.input,
|
||||||
featuresDirectory=featureMatching.featuresDirectory,
|
featuresFolder=featureMatching.featuresFolder,
|
||||||
matchesDirectory=featureMatching.output)
|
matchesFolder=featureMatching.output)
|
||||||
prepareDenseScene = graph.addNewNode('PrepareDenseScene',
|
prepareDenseScene = graph.addNewNode('PrepareDenseScene',
|
||||||
input=structureFromMotion.output)
|
input=structureFromMotion.output)
|
||||||
cameraConnection = graph.addNewNode('CameraConnection',
|
cameraConnection = graph.addNewNode('CameraConnection',
|
||||||
|
|
|
@ -37,9 +37,9 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='featuresDirectory',
|
name='featuresFolder',
|
||||||
label='Features Directory',
|
label='Features Folder',
|
||||||
description='''Path to a directory containing the extracted features.''',
|
description='''Path to a folder containing the extracted features.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
@ -158,7 +158,7 @@ class FeatureMatching(desc.CommandLineNode):
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='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}/',
|
value='{cache}/{nodeType}/{uid0}/',
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
|
|
|
@ -16,9 +16,9 @@ class ImageMatching(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='featuresDirectory',
|
name='featuresFolder',
|
||||||
label='Features Directory',
|
label='Features Folder',
|
||||||
description='''Directory containing the extracted features and descriptors. By default, it is the directory containing the SfMData.''',
|
description='''Folder containing the extracted features and descriptors. By default, it is the folder containing the SfMData.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
|
@ -47,7 +47,7 @@ class PrepareDenseScene(desc.CommandLineNode):
|
||||||
desc.File(
|
desc.File(
|
||||||
name='output',
|
name='output',
|
||||||
label='Output',
|
label='Output',
|
||||||
description='''Output directory.''',
|
description='''Output folder.''',
|
||||||
value='{cache}/{nodeType}/{uid0}/',
|
value='{cache}/{nodeType}/{uid0}/',
|
||||||
uid=[],
|
uid=[],
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,16 +16,16 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
),
|
),
|
||||||
|
|
||||||
desc.File(
|
desc.File(
|
||||||
name='featuresDirectory',
|
name='featuresFolder',
|
||||||
label='Features Directory',
|
label='Features Folder',
|
||||||
description='''Path to a directory containing the extracted features.''',
|
description='''Path to a folder containing the extracted features.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='matchesDirectory',
|
name='matchesFolder',
|
||||||
label='Matches Directory',
|
label='Matches Folder',
|
||||||
description='''Path to a directory in which computed matches are stored. Optional parameters:''',
|
description='''Path to a folder in which computed matches are stored.''',
|
||||||
value='',
|
value='',
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
@ -107,9 +107,9 @@ class StructureFromMotion(desc.CommandLineNode):
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='extraInfoDirectory',
|
name='extraInfoFolder',
|
||||||
label='Output',
|
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}/',
|
value='{cache}/{nodeType}/{uid0}/',
|
||||||
uid=[],
|
uid=[],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue