There was an error while loading. Please reload this page.
1 parent 3ad0df8 commit 7916a85Copy full SHA for 7916a85
1 file changed
meshroom/nodes/aliceVision/SfMFilter.py
@@ -217,6 +217,16 @@ class SfMFilter(desc.AVCommandLineNode):
217
and node.filterParams.filterObservations3D.observationsPropagationEnabled.value,
218
uid=[0],
219
),
220
+ desc.BoolParam(
221
+ name="observationsPropagationKeep",
222
+ label="Keep Propagated Observations",
223
+ description="Specifies if propagated observations are to be kept at the end.",
224
+ value=False,
225
+ enabled=lambda node: node.filterParams.filterObservations3D.filterObservations3DEnabled.value
226
+ and node.filterParams.filterObservations3D.propagationEnabled.value
227
+ and node.filterParams.filterObservations3D.observationsPropagationEnabled.value,
228
+ uid=[0],
229
+ ),
230
desc.FloatParam(
231
name="neighborsInfluence",
232
label="Neighbors Influence",
0 commit comments