mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-06 04:41:58 +02:00
[nodes] DepthMap: Add tile user parameters
This commit is contained in:
parent
498a756aca
commit
91c914e692
1 changed files with 25 additions and 1 deletions
|
@ -28,7 +28,7 @@ Use a downscale factor of one (full-resolution) only if the quality of the input
|
|||
description='SfMData file.',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
),
|
||||
desc.File(
|
||||
name='imagesFolder',
|
||||
label='Images Folder',
|
||||
|
@ -63,6 +63,30 @@ Use a downscale factor of one (full-resolution) only if the quality of the input
|
|||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name='tileWidth',
|
||||
label='Tile Width',
|
||||
description='Maximum tile width.',
|
||||
value=-1,
|
||||
range=(-1, 2000, 10),
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='tileHeight',
|
||||
label='Tile Height',
|
||||
description='Maximum tile height.',
|
||||
value=-1,
|
||||
range=(-1, 2000, 10),
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='tilePadding',
|
||||
label='Tile Padding',
|
||||
description='Tile padding for overlapping.',
|
||||
value=0,
|
||||
range=(0, 500, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='sgmScale',
|
||||
label='SGM: Downscale factor',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue