Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions meshroom/nodes/aliceVision/PanoramaInit.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,15 @@ class PanoramaInit(desc.AVCommandLineNode):
]

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(
name="outSfMData",
label="SfMData File",
Expand Down
14 changes: 7 additions & 7 deletions meshroom/nodes/aliceVision/PanoramaPostProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,20 @@ class PanoramaPostProcessing(desc.CommandLineNode):
]

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(
name="outputPanoramaPreview",
label="Output Panorama Preview",
description="Preview of the generated panorama in JPG format.",
semantic="image",
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(
name="downscaledPanoramaLevels",
label="Downscaled Panorama Levels",
Expand Down
Loading