Skip to content

Commit

Permalink
Merge pull request #1954 from alicevision/dev/automode
Browse files Browse the repository at this point in the history
[sfmTransform] add auto mode
  • Loading branch information
fabiencastan authored Apr 14, 2023
2 parents f83db77 + 463b572 commit bbc9e37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions meshroom/nodes/aliceVision/SfMTransform.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ class SfMTransform(desc.AVCommandLineNode):
description="Transformation method:\n"
" * transformation: Apply a given transformation\n"
" * manual: Apply the gizmo transformation (show the transformed input)\n"
" * auto: Using X axis of all cameras as horizon. gps north and scale if available. cameras center mean is used as origin.\n"
" * auto_from_cameras: Use cameras\n"
" * auto_from_cameras_x_axis: Use X axis of all cameras\n"
" * auto_from_landmarks: Use landmarks\n"
" * from_single_camera: Use a specific camera as the origin of the coordinate system\n"
" * from_center_camera: Use the center camera as the origin of the coordinate system\n"
" * from_markers: Align specific markers to custom coordinates\n"
" * from_gps: Align with the gps positions from the image metadata",
value='auto_from_landmarks',
values=['transformation', 'manual', 'auto_from_cameras', 'auto_from_cameras_x_axis', 'auto_from_landmarks', 'from_single_camera', 'from_center_camera', 'from_markers', 'from_gps'],
value='auto',
values=['transformation', 'manual', 'auto', 'auto_from_cameras', 'auto_from_cameras_x_axis', 'auto_from_landmarks', 'from_single_camera', 'from_center_camera', 'from_markers', 'from_gps'],
exclusive=True,
uid=[0],
),
Expand Down

0 comments on commit bbc9e37

Please sign in to comment.