[nodes] Fix ImageProcessing node <FILENAME> to <FILESTEM>

This commit is contained in:
Aurore LAFAURIE 2024-06-03 15:33:16 +02:00
parent 0fc1c2f625
commit 569c94c6a7

View file

@ -12,7 +12,7 @@ def outputImagesValueFunct(attr):
outputExt = ('.' + attr.node.extension.value) if attr.node.extension.value else None
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
return desc.Node.internalFolder + fileStem + (outputExt or '.*')