mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-14 16:52:01 +02:00
[depthMap] new SGM parameters: P1, P2, filteringAxes
This commit is contained in:
parent
3a0b3ac169
commit
b55bf48da7
1 changed files with 27 additions and 1 deletions
|
@ -120,6 +120,24 @@ class DepthMap(desc.CommandLineNode):
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
|
||||||
|
desc.FloatParam(
|
||||||
|
name='sgmP1',
|
||||||
|
label='SGM: P1',
|
||||||
|
description='Semi Global Matching: P1.',
|
||||||
|
value=10.0,
|
||||||
|
range=(0.0, 255.0, 0.5),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.FloatParam(
|
||||||
|
name='sgmP2',
|
||||||
|
label='SGM: P2',
|
||||||
|
description='Semi Global Matching: P2 weight.',
|
||||||
|
value=20.0,
|
||||||
|
range=(-255.0, 255.0, 0.5),
|
||||||
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
name='sgmMaxDepths',
|
name='sgmMaxDepths',
|
||||||
label='SGM: Max Depths',
|
label='SGM: Max Depths',
|
||||||
|
@ -143,7 +161,15 @@ class DepthMap(desc.CommandLineNode):
|
||||||
label='SGM: Use SfM Landmarks',
|
label='SGM: Use SfM Landmarks',
|
||||||
description='Semi Global Matching: Use landmarks from SfM to define the ranges for the plane sweeping.',
|
description='Semi Global Matching: Use landmarks from SfM to define the ranges for the plane sweeping.',
|
||||||
value=True,
|
value=True,
|
||||||
uid=[],
|
uid=[0],
|
||||||
|
advanced=True,
|
||||||
|
),
|
||||||
|
desc.StringParam(
|
||||||
|
name='sgmFilteringAxes',
|
||||||
|
label='SGM: Filtering Axes',
|
||||||
|
description="Semi Global Matching: Define axes for the filtering of the similarity volume.",
|
||||||
|
value='YX',
|
||||||
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue