mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-25 20:47:39 +02:00
Merge pull request #2573 from alicevision/dev/panoramaDisplay
Update panorama display
This commit is contained in:
commit
88f9d4be39
2 changed files with 16 additions and 7 deletions
|
@ -142,6 +142,15 @@ This node allows to setup the Panorama:
|
||||||
]
|
]
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
|
desc.File(
|
||||||
|
name="contactSheet",
|
||||||
|
label="Contact sheet",
|
||||||
|
semantic="image",
|
||||||
|
description="Contact sheet path.",
|
||||||
|
value=desc.Node.internalFolder + "contactSheetImage.jpg",
|
||||||
|
group="", # do not export on the command line
|
||||||
|
enabled=lambda node: node.buildContactSheet.enabled
|
||||||
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="outSfMData",
|
name="outSfMData",
|
||||||
label="SfMData File",
|
label="SfMData File",
|
||||||
|
|
|
@ -102,13 +102,6 @@ Post process the panorama.
|
||||||
]
|
]
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
|
||||||
name="outputPanorama",
|
|
||||||
label="Output Panorama",
|
|
||||||
description="Generated panorama in EXR format.",
|
|
||||||
semantic="image",
|
|
||||||
value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value,
|
|
||||||
),
|
|
||||||
desc.File(
|
desc.File(
|
||||||
name="outputPanoramaPreview",
|
name="outputPanoramaPreview",
|
||||||
label="Output Panorama Preview",
|
label="Output Panorama Preview",
|
||||||
|
@ -116,6 +109,13 @@ Post process the panorama.
|
||||||
semantic="image",
|
semantic="image",
|
||||||
value=lambda attr: desc.Node.internalFolder + attr.node.previewName.value,
|
value=lambda attr: desc.Node.internalFolder + attr.node.previewName.value,
|
||||||
),
|
),
|
||||||
|
desc.File(
|
||||||
|
name="outputPanorama",
|
||||||
|
label="Output Panorama",
|
||||||
|
description="Generated panorama in EXR format.",
|
||||||
|
semantic="image",
|
||||||
|
value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value,
|
||||||
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name="downscaledPanoramaLevels",
|
name="downscaledPanoramaLevels",
|
||||||
label="Downscaled Panorama Levels",
|
label="Downscaled Panorama Levels",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue