mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 04:56:28 +02:00
[nodes][aliceVision] remove voctree path from uid 0 computation
Avoid invalidating ImageMatching nodes when voctree path changes (i.e: Meshroom prebuilt binaries coming with an embedded voctree)
This commit is contained in:
parent
0578adabe7
commit
9f2185706e
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ class ImageMatching(desc.CommandLineNode):
|
||||||
label='Tree',
|
label='Tree',
|
||||||
description='Input name for the vocabulary tree file.',
|
description='Input name for the vocabulary tree file.',
|
||||||
value=os.environ.get('ALICEVISION_VOCTREE', ''),
|
value=os.environ.get('ALICEVISION_VOCTREE', ''),
|
||||||
uid=[0],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='weights',
|
name='weights',
|
||||||
|
|
|
@ -41,7 +41,7 @@ class ImageMatchingMultiSfM(desc.CommandLineNode):
|
||||||
label='Tree',
|
label='Tree',
|
||||||
description='Input name for the vocabulary tree file.',
|
description='Input name for the vocabulary tree file.',
|
||||||
value=os.environ.get('ALICEVISION_VOCTREE', ''),
|
value=os.environ.get('ALICEVISION_VOCTREE', ''),
|
||||||
uid=[0],
|
uid=[],
|
||||||
),
|
),
|
||||||
desc.File(
|
desc.File(
|
||||||
name='weights',
|
name='weights',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue