You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/cli/process/process.py
+21-9Lines changed: 21 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ def define_args(parser):
25
25
parser.add_argument('--blur_filter_range', type=int, default=4, help='Remove key frames that are the blurriest in a neighborhood of this size (0=disabled)')
26
26
parser.add_argument('--no_undistort', action='store_true', help='Do not undistort output images (only supported with certain devices)')
27
27
parser.add_argument('--image_format', type=str, default='jpg', help="Color image format (use 'png' for top quality)")
28
+
parser.add_argument("--texturize", help="Add textures to mesh export (BETA)", action="store_true")
28
29
parser.add_argument("--preview", help="Show latest primary image as a preview", action="store_true")
29
30
parser.add_argument("--preview3d", help="Show 3D visualization", action="store_true")
0 commit comments