[StructureFromMotion] add option to enable/disable track merging based on duplicate features

This commit is contained in:
Abdelrahman AL MAROUK 2023-10-12 15:41:57 +02:00
parent 87d39bb00c
commit 259fc3265e

View file

@ -333,6 +333,15 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
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",