python 使用argparser在Python中试验参数解析器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用argparser在Python中试验参数解析器相关的知识,希望对你有一定的参考价值。

def parse_args():
    """Parse input arguments."""
    parser = argparse.ArgumentParser(
        description='Head pose estimation using the Hopenet network.')
    parser.add_argument('--gpu', dest='gpu_id',
                        help='GPU device id to use [0]',
                        default=0, type=int)
    parser.add_argument('--snapshot', dest='snapshot',
                        help='Path of model snapshot.',
                        default='', type=str)
    parser.add_argument('--video', dest='video_path', help='Path of video')
    parser.add_argument('--bboxes', dest='bboxes',
                        help='Bounding box annotations of frames')
    parser.add_argument('--output_string', dest='output_string',
                        help='String appended to output file')
    parser.add_argument('--n_frames', dest='n_frames',
                        help='Number of frames', type=int)
    parser.add_argument('--fps', dest='fps',
                        help='Frames per second of source video',
                        type=float, default=30.)
    args = parser.parse_args()
    return args

以上是关于python 使用argparser在Python中试验参数解析器的主要内容,如果未能解决你的问题,请参考以下文章

python之argparse 模块

Python模块之argparse

python 使用argparser在Python中试验参数解析器

在 python 中使用 argparse 来解析整个 JSON

如何在 CMD 中不传递“python”的情况下使用 argparse?

python之定义参数模块argparse的基本使用