mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 09:56:32 +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(
|
desc.BoolParam(
|
||||||
name='fillHoles',
|
name='fillHoles',
|
||||||
label='Fill holes',
|
label='Fill Holes',
|
||||||
description='Fill holes.',
|
description='Fill holes based on the alpha channel.',
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
|
@ -54,15 +54,23 @@ Multiple cameras are contributing to the low frequencies and only the best one c
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0]
|
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(
|
desc.ChoiceParam(
|
||||||
name='overlayType',
|
name='overlayType',
|
||||||
label='Overlay Type',
|
label='Overlay Type',
|
||||||
description='Overlay on top of panorama to analyze transitions:\n'
|
description='Overlay on top of panorama to analyze transitions:\n'
|
||||||
' * none: no overlay\n'
|
' * none: no overlay\n'
|
||||||
' * borders: display image borders\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',
|
value='none',
|
||||||
values=['none', 'borders', 'seams'],
|
values=['none', 'borders', 'seams', 'all'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
advanced=True,
|
advanced=True,
|
||||||
uid=[0]
|
uid=[0]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue