本文整理匯總了Python中MCTF_parser.MCTF_parser.parse_known_args方法的典型用法代碼示例。如果您正苦於以下問題:Python MCTF_parser.parse_known_args方法的具體用法?Python MCTF_parser.parse_known_args怎麽用?Python MCTF_parser.parse_known_args使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MCTF_parser.MCTF_parser
的用法示例。
在下文中一共展示了MCTF_parser.parse_known_args方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from MCTF_parser import MCTF_parser [as 別名]
# 或者: from MCTF_parser.MCTF_parser import parse_known_args [as 別名]
def main():
parser = MCTF_parser(description="Info.")
parser.add_argument("--GOPs", help="number of GOPs to process. (Default = {})".format(info.GOPs))
parser.add_argument("--TRLs", help="number of iterations of the temporal transform + 1. (Default = {})".format(info.TRLs))
parser.add_argument("--FPS", help="frames per second. (Default = {})".format(info.FPS))
args = parser.parse_known_args()[0]
if args.GOPs:
info.GOPs = int(args.GOPs)
if args.TRLs:
info.TRLs = int(args.TRLs)
if args.FPS:
info.FPS = int(args.FPS)
x=info_j2k(info.GOPs, info.TRLs, info.FPS) #x=info_j2k() # ?
示例2: MCTF_parser
# 需要導入模塊: from MCTF_parser import MCTF_parser [as 別名]
# 或者: from MCTF_parser.MCTF_parser import parse_known_args [as 別名]
#!/usr/bin/python
# -*- coding: iso-8859-15 -*-
import sys
from subprocess import check_call
from subprocess import CalledProcessError
from MCTF_parser import MCTF_parser
file = ""
parser = MCTF_parser(description="Does nothing with the HFB texture data.")
parser.add_argument("--file", help="file that contains the LFB data. Default = {})".format(file))
args = parser.parse_known_args()[0]
if args.file:
file = args.file
try:
check_call("trace cp " + file + ".cp " + file, shell=True)
except CalledProcessError:
sys.exit(-1)