mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
Merge pull request #1026 from alicevision/dev/graphcutCompositing
[nodes] PanoramaCompositing: add a new graphcut option to improve seams
This commit is contained in:
commit
f20db3abe3
2 changed files with 12 additions and 4 deletions
|
@ -119,8 +119,8 @@ Convert or apply filtering to the input images.
|
|||
),
|
||||
desc.BoolParam(
|
||||
name='fillHoles',
|
||||
label='Fill holes',
|
||||
description='Fill holes.',
|
||||
label='Fill Holes',
|
||||
description='Fill holes based on the alpha channel.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
|
|
|
@ -54,15 +54,23 @@ Multiple cameras are contributing to the low frequencies and only the best one c
|
|||
exclusive=True,
|
||||
uid=[0]
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='useGraphCut',
|
||||
label='Use Smart Seams',
|
||||
description='Use a graphcut algorithm to optmize seams for better transitions between images.',
|
||||
value=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='overlayType',
|
||||
label='Overlay Type',
|
||||
description='Overlay on top of panorama to analyze transitions:\n'
|
||||
' * none: no overlay\n'
|
||||
' * borders: display image borders\n'
|
||||
' * seams: display transitions between images\n',
|
||||
' * seams: display transitions between images\n'
|
||||
' * all: display borders and seams\n',
|
||||
value='none',
|
||||
values=['none', 'borders', 'seams'],
|
||||
values=['none', 'borders', 'seams', 'all'],
|
||||
exclusive=True,
|
||||
advanced=True,
|
||||
uid=[0]
|
||||
|
|
Loading…
Add table
Reference in a new issue