mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-01 10:21:59 +02:00
[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:
parent
400c9920ea
commit
40d64c179f
1 changed files with 9 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue