mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 15:58:36 +02:00
Merge pull request #150 from alicevision/dev_versionCompatibility
Introduce version compatibility handling
This commit is contained in:
commit
bb0155ba42
64 changed files with 1762 additions and 557 deletions
|
@ -1,10 +1,10 @@
|
|||
import sys
|
||||
__version__ = "1.0"
|
||||
|
||||
import os
|
||||
from meshroom.core import desc
|
||||
|
||||
|
||||
class ImageMatchingMultiSfM(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'aliceVision_imageMatching {allParams}'
|
||||
# use both SfM inputs to define Node's size
|
||||
size = desc.MultiDynamicNodeSize(['input', 'inputB'])
|
||||
|
@ -99,14 +99,14 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
|
|||
name='output',
|
||||
label='Output List File',
|
||||
description='Filepath to the output file with the list of selected image pairs.',
|
||||
value='{cache}/{nodeType}/{uid0}/imageMatches.txt',
|
||||
value=desc.Node.internalFolder + 'imageMatches.txt',
|
||||
uid=[],
|
||||
),
|
||||
desc.File(
|
||||
name='outputCombinedSfM',
|
||||
label='Output Combined SfM',
|
||||
description='Path for the combined SfMData file',
|
||||
value='{cache}/{nodeType}/{uid0}/combineSfM.sfm',
|
||||
value=desc.Node.internalFolder + 'combineSfM.sfm',
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue