From b36f5f3f8e1e2992b982bb7a0e70c5f872925225 Mon Sep 17 00:00:00 2001 From: Thomas Zorroche Date: Thu, 25 Mar 2021 21:30:31 +0100 Subject: [PATCH] [node] SfmTransform - manual transformation method by default --- meshroom/multiview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/multiview.py b/meshroom/multiview.py index 56aaa61e..c85dc79f 100644 --- a/meshroom/multiview.py +++ b/meshroom/multiview.py @@ -254,7 +254,7 @@ def panoramaHdrPipeline(graph): panoramaOrientation = graph.addNewNode('SfMTransform', input=panoramaEstimation.output, - method='from_single_camera') + method='manual') panoramaWarping = graph.addNewNode('PanoramaWarping', input=panoramaOrientation.output)