mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-04 11:51:58 +02:00
[nodes] use 'desc.Node.internalFolder' in outputs values
* avoid duplicating the same string everywhere * don't override 'internalFolder' with the same value default value in subclasses
This commit is contained in:
parent
2eb2c3ac6f
commit
346277629a
34 changed files with 41 additions and 70 deletions
|
@ -4,7 +4,6 @@ from meshroom.core import desc
|
|||
|
||||
|
||||
class ImageMatching(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'aliceVision_imageMatching {allParams}'
|
||||
size = desc.DynamicNodeSize('input')
|
||||
|
||||
|
@ -82,7 +81,7 @@ class ImageMatching(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=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue