本篇文章帶給大家的內容是介紹python如何實現影片讀取與儲存功能。有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。
1.開啟相機
#打开摄像头 import cv2 cap = cv2.VideoCapture(0) while(True): ret,frame = cap.read()#返回两个值,第一个为bool类型,如果读到帧返回True,如果没读到帧返回False,第二个值为帧图像 gray = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY) cv2.imshow('frame',gray) if cv2.waitKey(1)==27: break cap.release() cv2.destroyAllWindows()
2.讀取影片檔案
#打开视频文件 import cv2 cap = cv2.VideoCapture('vtest.avi') while(True): ret,frame = cap.read()#返回两个值,第一个为bool类型,如果读到帧返回True,如果没读到帧返回False,第二个值为帧图像 if(ret): gray = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY) cv2.imshow('input',gray) else: break if cv2.waitKey(1)==27: break cap.release() cv2.destroyAllWindows()
3.儲存影片檔
#保存视频文件 import cv2 fourcc = cv2.VideoWriter_fourcc(*'XVID')#视频编码格式 out = cv2.VideoWriter('save.avi',fourcc,20,(640,480))#第三个参数为帧率,第四个参数为每帧大小 cap = cv2.VideoCapture(0) while(True): ret,frame = cap.read() if(ret): cv2.imshow('input',frame) out.write(frame) else: break if(cv2.waitKey(1)==27): break cap.release() out.release() cv2.destroyAllWindows()
以上是python如何實作影片的讀取與儲存功能(程式碼實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!