mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-07 05:12:00 +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
|
import json
|
||||||
|
|
||||||
|
@ -209,6 +209,14 @@ Merge LDR images into HDR images.
|
||||||
]
|
]
|
||||||
|
|
||||||
outputs = [
|
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(
|
desc.File(
|
||||||
name='outSfMData',
|
name='outSfMData',
|
||||||
label='SfMData File',
|
label='SfMData File',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue