Skip to content

Commit

Permalink
50 taus instead of 100
Browse files Browse the repository at this point in the history
Former-commit-id: ea968e7420ce67e67e4a45a5274f63834c1020fd
  • Loading branch information
Javi Ribera committed Sep 21, 2018
1 parent 7e3523f commit f28593c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions object-locator/argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,10 @@ def parse_command_args(training_or_testing):
'If not selected, R=0, ..., 15 will be tested.')
optional_args.add_argument('--taus',
type=str,
default=np.linspace(0, 1, 100).tolist() + [-1],
default=np.linspace(0, 1, 50).tolist() + [-1],
metavar='Ts',
help='Detection threshold. '
'If not selected, 100 thresholds in [0, 1] will be tested. '
'If not selected, 50 thresholds in [0, 1] will be tested. '
'tau=-1 means dynamic Otsu thresholding.')
optional_args.add_argument('--n-points',
type=int,
Expand Down

0 comments on commit f28593c

Please sign in to comment.