[nodes] LdrToHdrMerge: Add the output folder as a parameter

Being able to connect the output folder instead of only the output SfMData
file might be useful for the `LdrToHdrMerge` node since it produces more
than a single SfMData file as outputs.
This commit is contained in:
Candice Bentéjac 2023-06-01 12:27:02 +02:00
parent 400c9920ea
commit 40d64c179f

View file

@ -1,4 +1,4 @@
__version__ = "4.0"
__version__ = "4.1"
import json
@ -209,6 +209,14 @@ Merge LDR images into HDR images.
]
outputs = [
desc.File(
name='outputFolder',
label='Output Folder',
description='Path to the folder containing the merged HDR images.',
value=desc.Node.internalFolder,
uid=[],
group='', # do not export on the command line
),
desc.File(
name='outSfMData',
label='SfMData File',