歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> PyQt+OpenCV 錄制保存、播放視頻

PyQt+OpenCV 錄制保存、播放視頻

日期:2017/3/1 10:04:01   编辑:Linux編程

准備這一兩個月看看以前的書,另外學習下視頻方面的東西(CV方面)。

之前學過幾天QT/PyQt,於是用PyQt結合OpenCV,做了一個小程序。具有播放並保存攝像頭捕獲組成的視頻,以及播放本地視頻文件兩個小功能。

界面很簡單,沒圖沒真相 。

代碼就100多行,很容易看懂。最後感歎下OpenCV和python的強大,噢,還有QT/PyQt。。

#! /usr/bin/env python
#coding=utf-8
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys
import opencv
from PIL import Image
#this is important for capturing/displaying images
from opencv import highgui
from opencv import cv
import time


MPEG1VIDEO = 0x314D4950
camera = highgui.cvCreateCameraCapture(0)#找攝像頭,一般填0-99都可以


class MainWindow(QWidget):
def __init__(self, parent = None):
QWidget.__init__(self)
self.resize(550, 550)
self.setWindowTitle('vedio control')
self.status = 0 #0 is init status;1 is play video; 2 is capture video
self.image = QImage()

#錄制的視頻保存位置、格式等參數設定
self.videowriter = highgui.cvCreateVideoWriter("test.mpg", highgui.CV_FOURCC('m','p','g','1'), 25, cv.cvSize(200,200), 1)
#播放的視頻位置
self.playcapture = highgui.cvCreateFileCapture("test.avi")

#初始化按鈕
self.capturebtn = QPushButton('capture')
self.playbtn = QPushButton('play')
exitbtn = QPushButton('exit')

# 界面布局
vbox = QVBoxLayout()
vbox.addWidget(self.capturebtn)
vbox.addWidget(self.playbtn)
vbox.addWidget(exitbtn)

self.piclabel = QLabel('pic')
hbox = QHBoxLayout()
hbox.addLayout(vbox)
hbox.addStretch(1)
hbox.addWidget(self.piclabel)

self.setLayout(hbox)

#加載初始頁面
if self.image.load("1.jpg"):
self.piclabel.setPixmap(QPixmap.fromImage(self.image))

#設定定時器
self.timer = Timer() #錄制視頻
self.playtimer = Timer("updatePlay()")#播放視頻

#信號--槽
self.connect(self.timer, SIGNAL("updateTime()"),
self.CaptureVGA)
self.connect(self.capturebtn, SIGNAL("clicked()"),
self.PauseBegin)
self.connect(self.playtimer, SIGNAL("updatePlay()"),
self.PlayVideo)
self.connect(self.playbtn, SIGNAL("clicked()"),
self.VideoPlayPause)
self.connect(exitbtn, SIGNAL("clicked()"),
app, SLOT("quit()"))



def PlayVideo(self):
im = highgui.cvQueryFrame(self.playcapture)
im = opencv.adaptors.Ipl2PIL(im)
im = im.convert('RGB').tostring('jpeg', 'RGB')
self.image.loadFromData(QByteArray(im))
self.piclabel.setPixmap(QPixmap.fromImage(self.image))

def VideoPlayPause(self):
self.status, playstr, capturestr = ((1, 'pause', 'capture'), (0, 'play', 'capture'), (1, 'pause', 'capture'))[self.status]#三種狀態分別對應的顯示、處理
self.playbtn.setText(playstr)
self.capturebtn.setText(capturestr)
if self.status is 1:#狀態1,播放視頻
self.timer.stop()
self.playtimer.start()
else:
self.playtimer.stop()

def PauseBegin(self):
self.status, playstr, capturestr = ((2, 'play', 'pause'), (2, 'play', 'pause'), (0, 'play', 'capture'))[self.status]
self.capturebtn.setText(capturestr)
self.playbtn.setText(playstr)
print self.status, playstr, capturestr
if self.status is 2:#狀態2,錄制並顯示視頻
self.timer.start()
self.playtimer.stop()
else:
self.timer.stop()


def CaptureVGA(self):
im = highgui.cvQueryFrame(camera)
highgui.cvWriteFrame(self.videowriter, im)#錄制視頻,寫入文件
#convert Ipl image to PIL image
im = opencv.adaptors.Ipl2PIL(im)
im = im.convert('RGB').tostring('jpeg', 'RGB')# 轉換格式,jpeg
self.image.loadFromData(QByteArray(im))#格式支持QT,直接加載
#im.save('3.jpg')#opencv 返回的是Ipl 格式,QT無法直接顯示。不知道如何轉換格式,采用保存、讀取的方式。
#pic.load('3.jpg')
self.piclabel.setPixmap(QPixmap.fromImage(self.image)) #一幀一幀的顯示


class Timer(QThread):

def __init__(self, signal = "updateTime()", parent=None):
super(Timer, self).__init__(parent)
self.stoped = False
self.signal = signal
self.mutex = QMutex()


def run(self):
with QMutexLocker(self.mutex):
self.stoped = False
while True:
if self.stoped:
return


self.emit(SIGNAL(self.signal))
time.sleep(0.04) #40毫秒發送一次信號,每秒25幀

def stop(self):
with QMutexLocker(self.mutex):
self.stoped = True

def isStoped(self):
with QMutexLocker(sellf.mutex):
return self.stoped

if __name__ == "__main__" :
app = QApplication(sys.argv)
main = MainWindow()
main.show()
sys.exit(app.exec_())

Copyright © Linux教程網 All Rights Reserved