mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-25 12:37:33 +02:00
imageProcessing] bilateral filter option
Add the bilateral filter option
This commit is contained in:
parent
5433d8054f
commit
42070e4827
1 changed files with 31 additions and 0 deletions
|
@ -95,6 +95,37 @@ class ImageProcessing(desc.CommandLineNode):
|
||||||
range=(0.0, 1.0, 0.01),
|
range=(0.0, 1.0, 0.01),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
desc.BoolParam(
|
||||||
|
name='bilateralFilter',
|
||||||
|
label='Bilateral Filter',
|
||||||
|
description='Bilateral Filter.',
|
||||||
|
value=False,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
desc.IntParam(
|
||||||
|
name='BilateralFilterDistance',
|
||||||
|
label='Bilateral Filter Distance',
|
||||||
|
description='Diameter of each pixel neighborhood that is used during bilateral filtering.\nCould be very slow for large filters, so it is recommended to use 5.',
|
||||||
|
value=0,
|
||||||
|
range=(0, 9, 1),
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
desc.FloatParam(
|
||||||
|
name='BilateralFilterSigmaSpace',
|
||||||
|
label='Bilateral Filter Sigma Space',
|
||||||
|
description='Bilateral Filter sigma in the coordinate space.',
|
||||||
|
value=0.0,
|
||||||
|
range=(0.0, 150.0, 0.01),
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
desc.FloatParam(
|
||||||
|
name='BilateralFilterSigmaColor',
|
||||||
|
label='Bilateral Filter Sigma Color Space',
|
||||||
|
description='Bilateral Filter sigma in the color space.',
|
||||||
|
value=0.0,
|
||||||
|
range=(0.0, 150.0, 0.01),
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
label='Verbose Level',
|
label='Verbose Level',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue