Skip to content

Commit 88f9d4b

Browse files
authored
Merge pull request #2573 from alicevision/dev/panoramaDisplay
Update panorama display
2 parents 1bcfdc1 + ef5130e commit 88f9d4b

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

meshroom/nodes/aliceVision/PanoramaInit.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,15 @@ class PanoramaInit(desc.AVCommandLineNode):
142142
]
143143

144144
outputs = [
145+
desc.File(
146+
name="contactSheet",
147+
label="Contact sheet",
148+
semantic="image",
149+
description="Contact sheet path.",
150+
value=desc.Node.internalFolder + "contactSheetImage.jpg",
151+
group="", # do not export on the command line
152+
enabled=lambda node: node.buildContactSheet.enabled
153+
),
145154
desc.File(
146155
name="outSfMData",
147156
label="SfMData File",

meshroom/nodes/aliceVision/PanoramaPostProcessing.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,20 +102,20 @@ class PanoramaPostProcessing(desc.CommandLineNode):
102102
]
103103

104104
outputs = [
105-
desc.File(
106-
name="outputPanorama",
107-
label="Output Panorama",
108-
description="Generated panorama in EXR format.",
109-
semantic="image",
110-
value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value,
111-
),
112105
desc.File(
113106
name="outputPanoramaPreview",
114107
label="Output Panorama Preview",
115108
description="Preview of the generated panorama in JPG format.",
116109
semantic="image",
117110
value=lambda attr: desc.Node.internalFolder + attr.node.previewName.value,
118111
),
112+
desc.File(
113+
name="outputPanorama",
114+
label="Output Panorama",
115+
description="Generated panorama in EXR format.",
116+
semantic="image",
117+
value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value,
118+
),
119119
desc.File(
120120
name="downscaledPanoramaLevels",
121121
label="Downscaled Panorama Levels",

0 commit comments

Comments
 (0)