mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
[nodes] add some nodes documentation
This commit is contained in:
parent
0e606eef4e
commit
64a4c9426a
30 changed files with 352 additions and 18 deletions
|
@ -10,6 +10,10 @@ class PanoramaWarping(desc.CommandLineNode):
|
|||
commandLine = 'aliceVision_panoramaWarping {allParams}'
|
||||
size = desc.DynamicNodeSize('input')
|
||||
|
||||
documentation = '''
|
||||
Compute the image warping for each input image in the panorama coordinate system.
|
||||
'''
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
|
@ -21,7 +25,8 @@ class PanoramaWarping(desc.CommandLineNode):
|
|||
desc.IntParam(
|
||||
name='panoramaWidth',
|
||||
label='Panorama Width',
|
||||
description='Panorama width (pixels). 0 For automatic size',
|
||||
description='Panorama Width (in pixels).\n'
|
||||
'Set 0 to let the software choose the size automatically, so that on average the input resolution is kept (to limit over/under sampling).',
|
||||
value=10000,
|
||||
range=(0, 50000, 1000),
|
||||
uid=[0]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue