From 7083b01819c05f339c0852414e6a76687ca67f20 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Mon, 11 Apr 2022 17:01:38 +0200 Subject: [PATCH] [nodes] CameraInit: pixelRatioLocked True by default --- meshroom/nodes/aliceVision/CameraInit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/CameraInit.py b/meshroom/nodes/aliceVision/CameraInit.py index ea5d5bc8..91cf5fef 100644 --- a/meshroom/nodes/aliceVision/CameraInit.py +++ b/meshroom/nodes/aliceVision/CameraInit.py @@ -38,7 +38,7 @@ Intrinsic = [ desc.FloatParam(name="pixelRatio", label="pixel Ratio", description="ratio between pixel width and pixel height", value=1, uid=[], range=(0, 10, 0.1)), desc.BoolParam(name='pixelRatioLocked', label='Pixel ratio Locked', description='the pixelRatio value is locked for estimation', - value=False, uid=[0]), + value=True, uid=[0]), desc.ChoiceParam(name="type", label="Camera Type", description="Mathematical Model used to represent a camera:\n" " * pinhole: Simplest projective camera model without optical distortion (focal and optical center).\n"