Skip to content

Commit

Permalink
[nodes][SfMFilter] update SfMFilter node
Browse files Browse the repository at this point in the history
- update parameters
- update documentation
- parameters are grouped by steps for better understanding and control
  • Loading branch information
almarouk committed Mar 18, 2024
1 parent b24b23a commit 255f90b
Show file tree
Hide file tree
Showing 2 changed files with 309 additions and 27 deletions.
28 changes: 10 additions & 18 deletions meshroom/nodes/aliceVision/PrepareDenseScene.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,29 +93,21 @@ class PrepareDenseScene(desc.AVCommandLineNode):
desc.FloatParam(
name="landmarksMaskScale",
label="Landmarks Mask Scale",
description="Scale (relative to image size) of the projection of landmarks"
" to mask images for depth computation.\n"
"If 0, masking using landmarks will not be used.",
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.IntParam(
name="nbNeighborObservations",
label="Number of Neighbor Observations",
description="Number of neighbor observations to be considered for the landmarks-based masking.",
value=5,
range=(0, 50, 1),
uid=[0],
advanced=True
),
desc.FloatParam(
name="percentile",
label="Percentile",
description="TODO.",
value=0.95,
range=(0.0, 1.0, 0.01),
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
),
Expand Down
Loading

0 comments on commit 255f90b

Please sign in to comment.