Merge pull request #90 from alicevision/dev_removeCereal

Add support for AliceVision dev_removeCereal branch
This commit is contained in:
Fabien Castan 2018-02-23 10:43:08 +01:00 committed by GitHub
commit 3ff3308700
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 10 deletions

View file

@ -62,6 +62,14 @@ class CameraInit(desc.CommandLineNode):
label="Intrinsics", label="Intrinsics",
description="Camera Intrinsics", description="Camera Intrinsics",
group="", 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( desc.File(
name='sensorDatabase', name='sensorDatabase',

View file

@ -6,7 +6,7 @@ class FeatureExtraction(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/' internalFolder = '{cache}/{nodeType}/{uid0}/'
commandLine = 'aliceVision_featureExtraction {allParams}' commandLine = 'aliceVision_featureExtraction {allParams}'
size = desc.DynamicNodeSize('input') size = desc.DynamicNodeSize('input')
parallelization = desc.Parallelization(blockSize=10) parallelization = desc.Parallelization(blockSize=40)
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}' commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
inputs = [ inputs = [

View file

@ -112,15 +112,6 @@ class FeatureMatching(desc.CommandLineNode):
value=False, value=False,
uid=[], 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( desc.IntParam(
name='maxMatches', name='maxMatches',
label='Max Matches', label='Max Matches',