Skip to content

Commit

Permalink
[nodes] CameraInit: view regex is an advanced param
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Jun 30, 2020
1 parent 162a680 commit 253d9d5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions meshroom/nodes/aliceVision/CameraInit.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class CameraInit(desc.CommandLineNode):
value='folder',
exclusive=True,
uid=[0],
advanced=True
advanced=True,
),
desc.ChoiceParam(
name='allowedCameraModels',
Expand All @@ -148,7 +148,7 @@ class CameraInit(desc.CommandLineNode):
exclusive=False,
uid=[0],
joinChar=',',
advanced= True
advanced=True,
),
desc.ChoiceParam(
name='viewIdMethod',
Expand All @@ -160,7 +160,7 @@ class CameraInit(desc.CommandLineNode):
values=['metadata', 'filename'],
exclusive=True,
uid=[0],
advanced= True
advanced=True,
),
desc.StringParam(
name='viewIdRegex',
Expand All @@ -172,6 +172,7 @@ class CameraInit(desc.CommandLineNode):
' - Match the first number found in filename : "(\d+).*"\n',
value='.*?(\d+)',
uid=[0],
advanced=True,
),
desc.ChoiceParam(
name='verboseLevel',
Expand Down

0 comments on commit 253d9d5

Please sign in to comment.