Corrected "-i" argument description (#3142)
* Corrected "-i" argument description According to their usage in samples
This commit is contained in:
parent
a735ecc401
commit
3fe371299a
@ -79,7 +79,7 @@ def build_argparser():
|
||||
args.add_argument('-h', '--help', action='help', default=SUPPRESS, help='Show this help message and exit.')
|
||||
args.add_argument("-m", "--model", help="Required. Path to an .xml or .onnx file with a trained model.",
|
||||
required=True, type=str)
|
||||
args.add_argument("-i", "--input", help="Required. Path to a folder with images or path to an image files",
|
||||
args.add_argument("-i", "--input", help="Required. Path to an image files",
|
||||
required=True, type=str, nargs="+")
|
||||
args.add_argument("-l", "--cpu_extension",
|
||||
help="Optional. Required for CPU custom layers. Absolute path to a shared library with the"
|
||||
|
@ -29,7 +29,7 @@ def build_argparser():
|
||||
args = parser.add_argument_group('Options')
|
||||
args.add_argument('-h', '--help', action='help', default=SUPPRESS, help='Show this help message and exit.')
|
||||
args.add_argument("-m", "--model", help="Required. Path to an .xml or .onnx file with a trained model.", required=True, type=str)
|
||||
args.add_argument("-i", "--input", help="Required. Path to a folder with images or path to an image files", required=True,
|
||||
args.add_argument("-i", "--input", help="Required. Path to an image files", required=True,
|
||||
type=str, nargs="+")
|
||||
args.add_argument("-l", "--cpu_extension",
|
||||
help="Optional. Required for CPU custom layers. "
|
||||
|
Loading…
Reference in New Issue
Block a user