From 5e400e81e008b7460bc2833d55aa50e2e6b73afb Mon Sep 17 00:00:00 2001 From: Abdelrahman AL MAROUK Date: Mon, 16 Oct 2023 15:38:44 +0200 Subject: [PATCH] [nodes][SfMFilter] update SfMFilter node --- meshroom/nodes/aliceVision/SfMFilter.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meshroom/nodes/aliceVision/SfMFilter.py b/meshroom/nodes/aliceVision/SfMFilter.py index 1783c80f..fb614af9 100644 --- a/meshroom/nodes/aliceVision/SfMFilter.py +++ b/meshroom/nodes/aliceVision/SfMFilter.py @@ -217,6 +217,16 @@ of observations per landmark; the nearest observations are kept. and node.filterParams.filterObservations3D.observationsPropagationEnabled.value, uid=[0], ), + desc.BoolParam( + name="observationsPropagationKeep", + label="Keep Propagated Observations", + description="Specifies if propagated observations are to be kept at the end.", + value=False, + enabled=lambda node: node.filterParams.filterObservations3D.filterObservations3DEnabled.value + and node.filterParams.filterObservations3D.propagationEnabled.value + and node.filterParams.filterObservations3D.observationsPropagationEnabled.value, + uid=[0], + ), desc.FloatParam( name="neighborsInfluence", label="Neighbors Influence",