Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions meshroom/nodes/aliceVision/PrepareDenseScene.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,27 @@ class PrepareDenseScene(desc.AVCommandLineNode):
uid=[0],
advanced=True,
),
desc.FloatParam(
name="landmarksMaskScale",
label="Landmarks Mask Scale",
description="Scale of the projection of landmarks to mask images for depth computation.\n"
"If 0, masking using landmarks will not be used.\n"
"Otherwise, it's used to scale the projection radius \n"
"(either specified by `inputRadiiFile` or by image size if the former is not given).",
value=0.,
range=(0.0, 1.0, 0.01),
uid=[0],
advanced=True
),
desc.File(
name="inputRadiiFile",
label="Input Radii File",
description="Input Radii file containing the estimated projection radius of landmarks per view. \n"
"If not specified, image size will be used to specify the radius.",
value="",
uid=[0],
advanced=True
),
desc.ChoiceParam(
name="verboseLevel",
label="Verbose Level",
Expand Down
Loading