本文整理汇总了Python中imutils.video.FileVideoStream方法的典型用法代码示例。如果您正苦于以下问题:Python video.FileVideoStream方法的具体用法?Python video.FileVideoStream怎么用?Python video.FileVideoStream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类imutils.video
的用法示例。
在下文中一共展示了video.FileVideoStream方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: open
# 需要导入模块: from imutils import video [as 别名]
# 或者: from imutils.video import FileVideoStream [as 别名]
def open(self):
if opt.input_type == 'webcam':
self.vdo = FileVideoStream(opt.webcam_ind).start()
elif opt.input_type == 'ipcam':
# load cam key, secret
with open("cam_secret.txt") as f:
lines = f.readlines()
key = lines[0].strip()
secret = lines[1].strip()
self.vdo = FileVideoStream(opt.ipcam_url.format(key, secret, opt.ipcam_no)).start()
# video
else :
assert os.path.isfile(opt.vid_path), "Error: path error"
self.vdo = FileVideoStream(opt.vid_path).start()
self.im_width = int(self.vdo.stream.get(cv2.CAP_PROP_FRAME_WIDTH))
self.im_height = int(self.vdo.stream.get(cv2.CAP_PROP_FRAME_HEIGHT))
self.area = 0, 0, self.im_width, self.im_height
if self.write_video:
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
self.output = cv2.VideoWriter("demo1.avi", fourcc, 20, (self.im_width, self.im_height))
#return self.vdo.isOpened()