Update default feature-type, pc-filter values

pull/1754/head
Piero Toffanin 2024-04-10 12:26:34 -04:00
rodzic 981bf88b48
commit a70e7445ad
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -217,7 +217,7 @@ def config(argv=None, parser=None):
parser.add_argument('--feature-type',
metavar='<string>',
action=StoreValue,
default='sift',
default='dspsift',
choices=['akaze', 'dspsift', 'hahog', 'orb', 'sift'],
help=('Choose the algorithm for extracting keypoints and computing descriptors. '
'Can be one of: %(choices)s. Default: '
@ -485,7 +485,7 @@ def config(argv=None, parser=None):
metavar='<positive float>',
action=StoreValue,
type=float,
default=2.5,
default=20,
help='Filters the point cloud by removing points that deviate more than N standard deviations from the local mean. Set to 0 to disable filtering. '
'Default: %(default)s')