Skip to content

Commit

Permalink
Change PATCH_MAP to PATCH_MATCH in config
Browse files Browse the repository at this point in the history
  • Loading branch information
dakotabenjamin committed May 18, 2018
1 parent bde3989 commit 03f5a7b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions opendm/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,18 +166,18 @@ def config():

parser.add_argument('--opensfm-depthmap-method',
metavar='<string>',
default='PATCH_MAP',
choices=['PATCH_MAP', 'BRUTE_FORCE', 'PATCH_MATCH_SAMPLE'],
default='PATCH_MATCH',
choices=['PATCH_MATCH', 'BRUTE_FORCE', 'PATCH_MATCH_SAMPLE'],
help=('Raw depthmap computation algorithm. '
'PATCH_MAP and PATCH_MATCH_SAMPLE are faster, but might miss some valid points. '
'PATCH_MATCH and PATCH_MATCH_SAMPLE are faster, but might miss some valid points. '
'BRUTE_FORCE takes longer but produces denser reconstructions. '
'Default: %(default)s'))

parser.add_argument('--opensfm-depthmap-min-patch-sd',
metavar='<positive float>',
type=float,
default=1,
help=('When using PATCH_MAP or PATCH_MATCH_SAMPLE, controls the standard deviation threshold to include patches. '
help=('When using PATCH_MATCH or PATCH_MATCH_SAMPLE, controls the standard deviation threshold to include patches. '
'Patches with lower standard deviation are ignored. '
'Default: %(default)s'))

Expand Down

0 comments on commit 03f5a7b

Please sign in to comment.