Fixed `--detect-object` when specifying multiple objects
This commit is contained in:
parent
06bd1ccbd7
commit
82abe8b6d5
|
@ -14,6 +14,16 @@
|
||||||
],
|
],
|
||||||
"justMyCode": true
|
"justMyCode": true
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// "name": "Quick, Specific Debug",
|
||||||
|
// "type": "python",
|
||||||
|
// "request": "launch",
|
||||||
|
// "module": "wyzely_detect",
|
||||||
|
// "args": [
|
||||||
|
// "--run-scale", "0.25", "--view-scale", "0.5", "--no-remove-representations", "--detect-object", "person", "--detect-object", "cell phone"
|
||||||
|
// ],
|
||||||
|
// "justMyCode": true
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
// "name": "Python: Module",
|
// "name": "Python: Module",
|
||||||
"name": "Full Debug",
|
"name": "Full Debug",
|
||||||
|
|
|
@ -154,7 +154,7 @@ def set_argparse():
|
||||||
object_detection = argparser.add_argument_group("Object Detection options")
|
object_detection = argparser.add_argument_group("Object Detection options")
|
||||||
object_detection.add_argument(
|
object_detection.add_argument(
|
||||||
"--detect-object",
|
"--detect-object",
|
||||||
nargs="*",
|
action="append",
|
||||||
default=[],
|
default=[],
|
||||||
type=str,
|
type=str,
|
||||||
help="The object(s) to detect. Must be something the model is trained to detect",
|
help="The object(s) to detect. Must be something the model is trained to detect",
|
||||||
|
|
Loading…
Reference in New Issue