mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 19:02:29 +02:00
[nodes] convertSfMFormat
users can now specify a view white list to filter views
This commit is contained in:
parent
0fffc468f8
commit
71ebc0cf1b
1 changed files with 14 additions and 1 deletions
|
@ -5,6 +5,7 @@ from meshroom.core import desc
|
||||||
|
|
||||||
class ConvertSfMFormat(desc.CommandLineNode):
|
class ConvertSfMFormat(desc.CommandLineNode):
|
||||||
commandLine = 'aliceVision_convertSfMFormat {allParams}'
|
commandLine = 'aliceVision_convertSfMFormat {allParams}'
|
||||||
|
size = desc.DynamicNodeSize('input')
|
||||||
|
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
|
@ -34,6 +35,18 @@ class ConvertSfMFormat(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
),
|
),
|
||||||
|
desc.ListAttribute(
|
||||||
|
elementDesc=desc.File(
|
||||||
|
name="imageId",
|
||||||
|
label="Image id",
|
||||||
|
description="",
|
||||||
|
value="",
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
|
name="imageWhiteList",
|
||||||
|
label="Image White List",
|
||||||
|
description='image white list (uids or image paths).',
|
||||||
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='views',
|
name='views',
|
||||||
label='Views',
|
label='Views',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue