mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-17 11:06:27 +02:00
[nodes] add dspsift on all nodes using features
This commit is contained in:
parent
83f85df9e0
commit
24e6ee582f
6 changed files with 9 additions and 9 deletions
|
@ -41,7 +41,7 @@ class CameraLocalization(desc.CommandLineNode):
|
||||||
label='Match Desc Types',
|
label='Match Desc Types',
|
||||||
description='''Describer types to use for the matching.''',
|
description='''Describer types to use for the matching.''',
|
||||||
value=['sift'],
|
value=['sift'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
|
|
|
@ -48,7 +48,7 @@ class CameraRigCalibration(desc.CommandLineNode):
|
||||||
label='Match Describer Types',
|
label='Match Describer Types',
|
||||||
description='''The describer types to use for the matching''',
|
description='''The describer types to use for the matching''',
|
||||||
value=['sift'],
|
value=['sift'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
|
|
|
@ -35,7 +35,7 @@ It can also be used to remove specific parts of from an SfM scene (like filter a
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='Describer types to keep.',
|
description='Describer types to keep.',
|
||||||
value=['sift'],
|
value=['sift'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv', 'unknown'],
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv', 'unknown'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
|
|
|
@ -20,7 +20,7 @@ class ExportMatches(desc.CommandLineNode):
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='Describer types used to describe an image.',
|
description='Describer types used to describe an image.',
|
||||||
value=['sift'],
|
value=['sift'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
|
|
|
@ -51,7 +51,7 @@ Estimate relative camera rotations between input images.
|
||||||
label='Describer Types',
|
label='Describer Types',
|
||||||
description='Describer types used to describe an image.',
|
description='Describer types used to describe an image.',
|
||||||
value=['sift'],
|
value=['sift'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4',
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4',
|
||||||
'sift_ocv', 'akaze_ocv'],
|
'sift_ocv', 'akaze_ocv'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
|
|
@ -127,8 +127,8 @@ The transformation can be based on:
|
||||||
name='landmarksDescriberTypes',
|
name='landmarksDescriberTypes',
|
||||||
label='Landmarks Describer Types',
|
label='Landmarks Describer Types',
|
||||||
description='Image describer types used to compute the mean of the point cloud. (only for "landmarks" method).',
|
description='Image describer types used to compute the mean of the point cloud. (only for "landmarks" method).',
|
||||||
value=['sift', 'akaze'],
|
value=['sift', 'dspsift', 'akaze'],
|
||||||
values=['sift', 'sift_float', 'sift_upright', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv'],
|
values=['sift', 'sift_float', 'sift_upright', 'dspsift', 'akaze', 'akaze_liop', 'akaze_mldb', 'cctag3', 'cctag4', 'sift_ocv', 'akaze_ocv', 'unknown'],
|
||||||
exclusive=False,
|
exclusive=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
joinChar=',',
|
joinChar=',',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue