mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-18 19:46:26 +02:00
Merge pull request #90 from alicevision/dev_removeCereal
Add support for AliceVision dev_removeCereal branch
This commit is contained in:
commit
3ff3308700
3 changed files with 9 additions and 10 deletions
|
@ -62,6 +62,14 @@ class CameraInit(desc.CommandLineNode):
|
|||
label="Intrinsics",
|
||||
description="Camera Intrinsics",
|
||||
group="",
|
||||
),
|
||||
desc.FloatParam(
|
||||
name='defaultFieldOfView',
|
||||
label='Default Field Of View',
|
||||
description='Empirical value for the field of view in degree.',
|
||||
value=45.0,
|
||||
range=(0, 180.0, 1),
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='sensorDatabase',
|
||||
|
|
|
@ -6,7 +6,7 @@ class FeatureExtraction(desc.CommandLineNode):
|
|||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'aliceVision_featureExtraction {allParams}'
|
||||
size = desc.DynamicNodeSize('input')
|
||||
parallelization = desc.Parallelization(blockSize=10)
|
||||
parallelization = desc.Parallelization(blockSize=40)
|
||||
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
||||
|
||||
inputs = [
|
||||
|
|
|
@ -112,15 +112,6 @@ class FeatureMatching(desc.CommandLineNode):
|
|||
value=False,
|
||||
uid=[],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='fileExtension',
|
||||
label='File Extension',
|
||||
description='''File extension to store matches (bin or txt).''',
|
||||
value='txt',
|
||||
values=('txt', 'bin'),
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
),
|
||||
desc.IntParam(
|
||||
name='maxMatches',
|
||||
label='Max Matches',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue