您好,登錄后才能下訂單哦!
怎么在OpenCV中使用VideoCapture類?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
VideoCapture()是用于從視頻文件、圖片序列、攝像頭捕獲視頻的類;
#!/usr/bin/env python #-*- coding:utf-8 -*- # @Time : 19-4-21 上午10:31 # @Author : chen """ VideoCapture()的使用 """ import cv2 import argparse import os import pdb ap = argparse.ArgumentParser() ap.add_argument("-v", "--videoPath", default="./video_1.mp4", help="path to input video") ap.add_argument("-o", "--outputPath", default="grabImages", help="path to output frames") args = vars(ap.parse_args()) # 初始化,并讀取第一幀 # rval表示是否成功獲取幀 # frame是捕獲到的圖像 vc = cv2.VideoCapture(args["videoPath"]) rval, frame = vc.read() # 獲取視頻fps fps = vc.get(cv2.CAP_PROP_FPS) # 獲取視頻總幀數 frame_all = vc.get(cv2.CAP_PROP_FRAME_COUNT) print("[INFO] 視頻FPS: {}".format(fps)) print("[INFO] 視頻總幀數: {}".format(frame_all)) print("[INFO] 視頻時長: {}s".format(frame_all/fps)) outputPath = os.path.sep.join([args["outputPath"]]) if os.path.exists(outputPath) is False: print("[INFO] 創建文件夾,用于保存提取的幀") os.mkdir(outputPath) # 每隔100幀保存一張圖片 frame_interval = 100 # 統計當前幀 frame_count = 1 # 保存圖片個數 count = 0 while rval: rval, frame = vc.read() if frame_count % frame_interval == 0: filename = os.path.sep.join([outputPath, "test_{}.jpg".format(count)]) cv2.imwrite(filename, frame) count += 1 print("保存圖片:{}".format(filename)) frame_count += 1 # 關閉視頻文件 vc.release() print("[INFO] 總共保存:{}張圖片".format(count))
關于怎么在OpenCV中使用VideoCapture類問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。