Skip to content

Commit

Permalink
[nodes] SfMFilter: Adapt to node api changes (no more uid)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Oct 28, 2024
1 parent 83631e3 commit 41c5b3e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions meshroom/nodes/aliceVision/SfMFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class SfMFilter(desc.CommandLineNode):
label="inputFile",
description="SfMData file.",
value="",
uid=[],
),
desc.StringParam(
name="fileMatchingPattern",
Expand All @@ -32,7 +31,6 @@ class SfMFilter(desc.CommandLineNode):
" - Match the filename prefix before \"_\": "
r'".*\/(.*?)_.*\.\w{3}"',
value=r'.*\/(.*?)\.\w{3}',
uid=[],
),
]

Expand All @@ -42,13 +40,11 @@ class SfMFilter(desc.CommandLineNode):
label="SfMData_selected",
description="Output SfMData file containing selected views.",
value=desc.Node.internalFolder + "/selectedSfmData.sfm",
uid=[],
),
desc.File(
name="outputSfMData_unselected",
label="SfMData_unselected",
description="Output SfMData file containing remaining views.",
value=desc.Node.internalFolder + "/unselectedSfmData.sfm",
uid=[],
),
]

0 comments on commit 41c5b3e

Please sign in to comment.