mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-09 15:02:03 +00:00
Merge pull request #20 from changjo/patch-1
Fixed argument actions Former-commit-id: 23e817310461f79888078a2a1ab4b2187a97dc88
This commit is contained in:
commit
f991ffa23e
|
@ -85,10 +85,10 @@ def get_args():
|
||||||
parser.add_argument('--viz', '-v', action='store_true',
|
parser.add_argument('--viz', '-v', action='store_true',
|
||||||
help="Visualize the images as they are processed",
|
help="Visualize the images as they are processed",
|
||||||
default=False)
|
default=False)
|
||||||
parser.add_argument('--no-save', '-n', action='store_false',
|
parser.add_argument('--no-save', '-n', action='store_true',
|
||||||
help="Do not save the output masks",
|
help="Do not save the output masks",
|
||||||
default=False)
|
default=False)
|
||||||
parser.add_argument('--no-crf', '-r', action='store_false',
|
parser.add_argument('--no-crf', '-r', action='store_true',
|
||||||
help="Do not use dense CRF postprocessing",
|
help="Do not use dense CRF postprocessing",
|
||||||
default=False)
|
default=False)
|
||||||
parser.add_argument('--mask-threshold', '-t', type=float,
|
parser.add_argument('--mask-threshold', '-t', type=float,
|
||||||
|
|
Loading…
Reference in a new issue