Skip to content

Commit

Permalink
[nodes] CheckerboardDetection: cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mugulmd committed Mar 14, 2023
1 parent b43c03a commit 480c03b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions meshroom/nodes/aliceVision/CheckerboardDetection.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,22 @@ class CheckerboardDetection(desc.AVCommandLineNode):

category = 'Other'
documentation = '''
This node detects checkerboard structures in a set of images.
Detect checkerboard structures in a set of images.
The detection method also supports nested calibration grids.
'''

inputs = [
desc.File(
name='input',
label='Input',
description='SfMData File',
description='SfMData File. Viewpoints must correspond to lens calibration grids.',
value='',
uid=[0],
),
desc.BoolParam(
name='useNestedGrids',
label='Nested calibration grid',
description='Images contain nested calibration grids. These grids must be centered on image center.',
description='Images contain nested calibration grids. These grids must be centered on the image center.',
value=False,
uid=[0],
),
Expand Down Expand Up @@ -59,7 +60,7 @@ class CheckerboardDetection(desc.AVCommandLineNode):
label='Checker Lines',
description='Debug Images.',
semantic='image',
value=desc.Node.internalFolder + 'checker_<VIEW_ID>.png',
value=desc.Node.internalFolder + '<VIEW_ID>.png',
group='', # do not export on the command line
uid=[],
),
Expand Down

0 comments on commit 480c03b

Please sign in to comment.