Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Fabien Castan <fabcastan@gmail.com>
  • Loading branch information
servantftechnicolor and fabiencastan committed Sep 9, 2024
1 parent 3478209 commit 221ba1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meshroom/nodes/aliceVision/SfMTransform.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SfMTransform(desc.AVCommandLineNode):
* from_markers: Align specific markers to custom coordinates
* from_gps: Align with the gps positions from the image metadata
* align_ground: Detect ground level and align to it
* from_linup: Align using external lineup file
* from_lineup: Align using a camera pose (json line up file), tracks and a mesh
'''

inputs = [
Expand Down Expand Up @@ -56,23 +56,23 @@ class SfMTransform(desc.AVCommandLineNode):
),
desc.File(
name="lineUp",
label="LineUp file",
label="Line Up File",
description="LineUp Json file.",
value="",
uid=[0],
enabled=lambda node: node.method.value == "from_lineup"
),
desc.File(
name="tracksFile",
label="tracks file",
label="Tracks File",
description="Tracks file for lineup.",
value="",
uid=[0],
enabled=lambda node: node.method.value == "from_lineup"
),
desc.File(
name="objectFile",
label="Mesh file",
label="Mesh File",
description="Mesh file for lineup.",
value="",
uid=[0],
Expand Down

0 comments on commit 221ba1a

Please sign in to comment.