Skip to content

Commit 41c5b3e

Browse files
committed
[nodes] SfMFilter: Adapt to node api changes (no more uid)
1 parent 83631e3 commit 41c5b3e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

meshroom/nodes/aliceVision/SfMFilter.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class SfMFilter(desc.CommandLineNode):
1717
label="inputFile",
1818
description="SfMData file.",
1919
value="",
20-
uid=[],
2120
),
2221
desc.StringParam(
2322
name="fileMatchingPattern",
@@ -32,7 +31,6 @@ class SfMFilter(desc.CommandLineNode):
3231
" - Match the filename prefix before \"_\": "
3332
r'".*\/(.*?)_.*\.\w{3}"',
3433
value=r'.*\/(.*?)\.\w{3}',
35-
uid=[],
3634
),
3735
]
3836

@@ -42,13 +40,11 @@ class SfMFilter(desc.CommandLineNode):
4240
label="SfMData_selected",
4341
description="Output SfMData file containing selected views.",
4442
value=desc.Node.internalFolder + "/selectedSfmData.sfm",
45-
uid=[],
4643
),
4744
desc.File(
4845
name="outputSfMData_unselected",
4946
label="SfMData_unselected",
5047
description="Output SfMData file containing remaining views.",
5148
value=desc.Node.internalFolder + "/unselectedSfmData.sfm",
52-
uid=[],
5349
),
5450
]

0 commit comments

Comments
 (0)