Skip to content

Commit ff921d6

Browse files
authored
Merge pull request #2664 from alicevision/dev/changeDefaultSfm
Create new pipeline for testing modular sfm
2 parents 91d2530 + 696ec16 commit ff921d6

File tree

8 files changed

+2041
-5
lines changed

8 files changed

+2041
-5
lines changed

meshroom/nodes/aliceVision/SfMPoseInjecting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ class SfMPoseInjecting(desc.AVCommandLineNode):
5050
name="output",
5151
label="SfMData",
5252
description="Path to the output SfM file.",
53-
value=desc.Node.internalFolder + "sfmData.sfm",
53+
value=desc.Node.internalFolder + "sfmData.abc",
5454
),
5555
]

meshroom/nodes/aliceVision/SfmBootstraping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ class SfMBootStraping(desc.AVCommandLineNode):
7979
name="output",
8080
label="SfMData",
8181
description="Path to the output SfMData file.",
82-
value=desc.Node.internalFolder + "sfm.json",
82+
value=desc.Node.internalFolder + "bootstrap.abc",
8383
),
8484
]

meshroom/nodes/aliceVision/SfmExpanding.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,12 @@ class SfMExpanding(desc.AVCommandLineNode):
170170
name="output",
171171
label="SfMData",
172172
description="Path to the output SfMData file.",
173-
value=desc.Node.internalFolder + "sfm.json",
173+
value=desc.Node.internalFolder + "sfmExpanded.abc",
174174
),
175+
desc.File(
176+
name="outputViewsAndPoses",
177+
label="Views And Poses",
178+
description="Path to the output SfMData file with cameras (views and poses).",
179+
value=desc.Node.internalFolder + "cameras.sfm",
180+
)
175181
]

0 commit comments

Comments
 (0)