it says
"usage: demo_image.py [-h] --image IMAGE [--output OUTPUT] [--model MODEL]
demo_image.py: error: the following arguments are required: --image
An exception has occurred, use %tb to see the full traceback."
how can i deal with this problem?I'm a Chinese and my English is not good:)
` if name == 'main': parser = argparse.ArgumentParser() parser.add_argument('--image', type=str, required=True, help='input image') parser.add_argument('--output', type=str, default='result.png', help='output image') parser.add_argument('--model', type=str, default='model/keras/model.h5', help='path to the weights file')
it says "usage: demo_image.py [-h] --image IMAGE [--output OUTPUT] [--model MODEL] demo_image.py: error: the following arguments are required: --image An exception has occurred, use %tb to see the full traceback."
how can i deal with this problem?I'm a Chinese and my English is not good:)