嘿,如果有人可以帮助我,那就太好了。我正在尝试使用 OpenCV 获取网络摄像头流,然后通过更新图像将其显示在 PySide 应用程序中。
cv.NamedWindow('Raw', cv.CV_WINDOW_AUTOSIZE)
self.cap = cv.CaptureFromCAM(0)
这是有效的,我在 while 循环中使用 show image 函数更新了命名窗口。
while True:
frame = cv.QueryFrame(self.cap)
img = cv.CreateImage(cv.GetSize(frame),cv.IPL_DEPTH_8U,1)
if frame is None:
print "Frame is none"
sys.exit(1)
# display webcam image
cv.ShowImage('Raw', frame)
但是当我尝试在 PySide 应用程序中显示图像时,我只看到一个空白的黑色图像(以下代码与上面的 while 循环相同)
image = QImage(frame.tostring(), frame.width, frame.height, QImage.Format_RGB888).rgbSwapped()
self.pixmap = QPixmap.fromImage(image)
grid = QGridLayout()
grid.setSpacing(10)
imageBox = QLabel(self)
imageBox.setGeometry(0,0,300,200)
imageBox.setPixmap(self.pixmap.scaled(300,200))
grid.addWidget(imageBox)
self.widget.setLayout(grid)
self.repaint()
有谁知道为什么图片不更新?