mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-11 07:11:52 +02:00
[nodes] Fix ImageProcessing node <FILENAME> to <FILESTEM>
This commit is contained in:
parent
0fc1c2f625
commit
569c94c6a7
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ def outputImagesValueFunct(attr):
|
||||||
outputExt = ('.' + attr.node.extension.value) if attr.node.extension.value else None
|
outputExt = ('.' + attr.node.extension.value) if attr.node.extension.value else None
|
||||||
|
|
||||||
if inputExt in ['.abc', '.sfm']:
|
if inputExt in ['.abc', '.sfm']:
|
||||||
fileStem = '<FILENAME>' if attr.node.keepImageFilename.value else '<VIEW_ID>'
|
fileStem = '<FILESTEM>' if attr.node.keepImageFilename.value else '<VIEW_ID>'
|
||||||
# If we have an SfM in input
|
# If we have an SfM in input
|
||||||
return desc.Node.internalFolder + fileStem + (outputExt or '.*')
|
return desc.Node.internalFolder + fileStem + (outputExt or '.*')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue