[nodes][aliceVision] DepthMap: fix default value of sgmMaxSideXY

This commit is contained in:
Fabien Castan 2019-07-16 21:21:00 +02:00
parent b55bf48da7
commit e259294640

View file

@ -77,10 +77,10 @@ class DepthMap(desc.CommandLineNode):
uid=[0], uid=[0],
), ),
desc.IntParam( desc.IntParam(
name='sgmMaxSide', name='sgmMaxSideXY',
label='SGM: Max Side', label='SGM: Max Side',
description='Semi Global Matching: Max side in pixels used to automatically decide for sgmScale/sgmStep if not defined.', description='Semi Global Matching: Max side in pixels used to automatically decide for sgmScale/sgmStep if not defined.',
value=200, value=700,
range=(-1, 1000, 1), range=(-1, 1000, 1),
uid=[0], uid=[0],
), ),