Use imageMatching node in the multiview pipeline

This commit is contained in:
Fabien Castan 2017-10-16 17:55:54 +02:00
parent 84945c52bb
commit 6e270ad6a9
4 changed files with 29 additions and 17 deletions

View file

@ -13,6 +13,13 @@ class ImageMatching(desc.CommandLineNode):
uid=[0],
isOutput=False,
)
featuresDirectory = desc.File(
label='Features Directory',
description='''Directory containing the extracted features and descriptors. By default, it is the directory containing the SfMData.''',
value='',
uid=[0],
isOutput=False,
)
tree = desc.File(
label='Tree',
description='''Input name for the vocabulary tree file.''',
@ -22,8 +29,8 @@ class ImageMatching(desc.CommandLineNode):
)
output = desc.File(
label='Output',
description='''Filepath to the output file with the list of selected image pairs. Optional parameters:''',
value='{cache}/{nodeType}/{uid0}/',
description='''Filepath to the output file with the list of selected image pairs.''',
value='{cache}/{nodeType}/{uid0}/imageMatches.txt',
uid=[],
isOutput=True,
)