From 259fc3265eb387f87619660048040406b499924c Mon Sep 17 00:00:00 2001 From: Abdelrahman AL MAROUK Date: Thu, 12 Oct 2023 15:41:57 +0200 Subject: [PATCH] [StructureFromMotion] add option to enable/disable track merging based on duplicate features --- meshroom/nodes/aliceVision/StructureFromMotion.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meshroom/nodes/aliceVision/StructureFromMotion.py b/meshroom/nodes/aliceVision/StructureFromMotion.py index 77a4a6bd76..adba029909 100644 --- a/meshroom/nodes/aliceVision/StructureFromMotion.py +++ b/meshroom/nodes/aliceVision/StructureFromMotion.py @@ -333,6 +333,15 @@ class StructureFromMotion(desc.AVCommandLineNode): uid=[0], advanced=True, ), + desc.BoolParam( + name="mergeTracks", + label="Merge Tracks", + description="Enable/Disable the track merging. The merging between two tracks is made when they have duplicate features \n" + "coming from the same original feature (same describer type, same 2D position in the same view, same scale, \n" + "but different rotations and different feature id).\n", + value=False, + uid=[0], + ), desc.BoolParam( name="filterTrackForks", label="Filter Track Forks",