Draft Reconstruction pipeline

This commit is contained in:
Remy Mellet 2021-07-26 17:14:05 +02:00 committed by Fabien Castan
parent 1a9692d498
commit d30571ce7d
4 changed files with 53 additions and 2 deletions

View file

@ -496,6 +496,9 @@ class Reconstruction(UIGraph):
elif p.lower() == "cameratracking":
# default camera tracking pipeline
self.setGraph(multiview.cameraTracking())
elif p.lower() == "photogrammetrydraft":
# photogrammetry pipeline in draft mode (no cuda)
self.setGraph(multiview.photogrammetryDraft())
else:
# use the user-provided default photogrammetry project file
self.load(p, setupProjectFile=False)