Skip to content

Commit

Permalink
Merge pull request #20 from Yu-AnChen/patch-6
Browse files Browse the repository at this point in the history
Fix bug - set `--maxima-h` typing to float
  • Loading branch information
clarenceyapp committed May 26, 2023
2 parents 7f3234e + db4d272 commit 7807209
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion large/watershed.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ def main(argv=sys.argv):
parser.add_argument(
'--maxima-h',
help='`h` in `skimage.morphology.extrema.h_maxima`',
default=0.01
default=0.01,
type=float
)
parser.add_argument(
'--maxima-footprint-size',
Expand Down

0 comments on commit 7807209

Please sign in to comment.