import sys import cv2 import os from video import Ui_MainWindow from PyQt5 import QtGui from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * class vi(QMainWindow,Ui_MainWindow): def __init__(self): super().__init__() @pyqtSlot() def on_pushButton_clicked(self): self.count.append() camera_path = 0 # 0自带摄像头 1外接摄像头 capture = cv2.VideoCapture(camera_path) # 初始化播放器 流媒体 fourcc = cv2.VideoWriter_fourcc('D', 'I', 'V', 'X') video_writer = cv2.VideoWriter(file_path, fourcc, 25, (960, 540)) while True: flag, frame = capture.read() if flag is False: continue frame = cv2.resize(frame, (960, 540)) video_writer.write(frame) cv2.imshow("video", frame) key = cv2.waitKey(25) if key == 27: video_writer.release() break if __name__ == '__main__': app = QApplication(sys.argv) player = vi() player.show() sys.exit(app.exec_()) 这串代码只出现一个小窗口,没有按钮,也没有打开摄像头,帮我改一下
时间: 2024-02-14 20:29:16 浏览: 127
根据你提供的代码,我看到你正在使用一个名为`video`的UI文件。为了在窗口中显示按钮和其他控件,你需要将UI文件加载到你的主窗口中。
在你的代码中的`vi`类中,首先需要调用UI文件的`setupUi()`方法将UI文件加载到主窗口中。然后,你可以在UI文件中定义的控件上进行操作。
以下是修改后的代码示例,其中包括加载UI文件和添加按钮控件:
```python
import sys
import cv2
from PyQt5 import QtGui
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from video import Ui_MainWindow
class vi(QMainWindow, Ui_MainWindow):
def __init__(self):
super().__init__()
self.setupUi(self)
@pyqtSlot()
def on_pushButton_clicked(self):
camera_path = 0 # 0自带摄像头 1外接摄像头
capture = cv2.VideoCapture(camera_path) # 初始化播放器 流媒体
fourcc = cv2.VideoWriter_fourcc('D', 'I', 'V', 'X')
video_writer = cv2.VideoWriter("image/myself.mp4", fourcc, 25, (960, 540))
while True:
flag, frame = capture.read()
if flag is False:
continue
frame = cv2.resize(frame, (960, 540))
video_writer.write(frame)
cv2.imshow("video", frame)
key = cv2.waitKey(25)
if key == 27:
video_writer.release()
break
if __name__ == '__main__':
app = QApplication(sys.argv)
player = vi()
player.show()
sys.exit(app.exec_())
```
在这个示例中,我假设你的UI文件名为`video.ui`,并且你已经使用`pyuic5`将其转换为Python代码。
这样修改后,你应该能够看到一个带有按钮的窗口,并且在点击按钮时会打开摄像头并保存视频流到文件中。
请确保你已经正确加载了UI文件,并且UI文件中的控件与代码中的控件名称一致。
希望这可以解决你的问题!如有其他问题,请随时提问。
阅读全文