Ejemplo n.º 1
0
 def __init__(self, check):
     QSignalTransition.__init__(self, check.stateChanged[int])
     self.eventTested = False
Ejemplo n.º 2
0
 def eventTest(self, event):
     self.eventTested = True
     if not QSignalTransition.eventTest(self, event):
         return False
     return event.arguments()[0] == Qt.Checked
Ejemplo n.º 3
0
 def __init__(self, check):
     QSignalTransition.__init__(self, check.stateChanged[int])
     self.eventTested = False
Ejemplo n.º 4
0
 def eventTest(self, event):
     self.eventTested = True
     if not QSignalTransition.eventTest(self, event):
         return False
     return event.arguments()[0] == Qt.Checked
Ejemplo n.º 5
0
class VideoFrameGrabber(QAbstractVideoSurface):
    frameAvailable = QSignalTransition.setSignal(QImage)

    # frameAvailable.append()
    # frameAvailable = QSignalTransition.signal(QImage)

    def __init__(self, widget: QWidget, parent: QObject):
        super().__init__(parent)

        self.widget = widget

    def supportedPixelFormats(self, handleType):
        return [
            QVideoFrame.Format_ARGB32, QVideoFrame.Format_ARGB32_Premultiplied,
            QVideoFrame.Format_RGB32, QVideoFrame.Format_RGB24,
            QVideoFrame.Format_RGB565, QVideoFrame.Format_RGB555,
            QVideoFrame.Format_ARGB8565_Premultiplied,
            QVideoFrame.Format_BGRA32, QVideoFrame.Format_BGRA32_Premultiplied,
            QVideoFrame.Format_BGR32, QVideoFrame.Format_BGR24,
            QVideoFrame.Format_BGR565, QVideoFrame.Format_BGR555,
            QVideoFrame.Format_BGRA5658_Premultiplied,
            QVideoFrame.Format_AYUV444,
            QVideoFrame.Format_AYUV444_Premultiplied,
            QVideoFrame.Format_YUV444, QVideoFrame.Format_YUV420P,
            QVideoFrame.Format_YV12, QVideoFrame.Format_UYVY,
            QVideoFrame.Format_YUYV, QVideoFrame.Format_NV12,
            QVideoFrame.Format_NV21, QVideoFrame.Format_IMC1,
            QVideoFrame.Format_IMC2, QVideoFrame.Format_IMC3,
            QVideoFrame.Format_IMC4, QVideoFrame.Format_Y8,
            QVideoFrame.Format_Y16, QVideoFrame.Format_Jpeg,
            QVideoFrame.Format_CameraRaw, QVideoFrame.Format_AdobeDng
        ]

    def isFormatSupported(self, format):
        imageFormat = QVideoFrame.imageFormatFromPixelFormat(
            format.pixelFormat())
        size = format.frameSize()

        return imageFormat != QImage.Format_Invalid and not size.isEmpty() and \
               format.handleType() == QAbstractVideoBuffer.NoHandle

    def start(self, format: QVideoSurfaceFormat):
        imageFormat = QVideoFrame.imageFormatFromPixelFormat(
            format.pixelFormat())
        size = format.frameSize()

        if imageFormat != QImage.Format_Invalid and not size.isEmpty():
            self.imageFormat = imageFormat
            self.imageSize = size
            self.sourceRect = format.viewport()

            super().start(format)

            self.widget.updateGeometry()
            self.updateVideoRect()

            return True
        else:
            return False

    def stop(self):
        self.currentFrame = QVideoFrame()
        self.targetRect = QRect()

        super().stop()

        self.widget.update()

    def present(self, frame):
        if frame.isValid():
            cloneFrame = QVideoFrame(frame)
            cloneFrame.map(QAbstractVideoBuffer.ReadOnly)
            image = QImage(
                cloneFrame.bits(), cloneFrame.width(), cloneFrame.height(),
                QVideoFrame.imageFormatFromPixelFormat(
                    cloneFrame.pixelFormat()))
            self.frameAvailable.emit(image)  # this is very important
            cloneFrame.unmap()

        if self.surfaceFormat().pixelFormat() != frame.pixelFormat() or \
                self.surfaceFormat().frameSize() != frame.size():
            self.setError(QAbstractVideoSurface.IncorrectFormatError)
            self.stop()

            return False
        else:
            self.currentFrame = frame

            self.widget.repaint(self.targetRect)

            return True

    def updateVideoRect(self):
        size = self.surfaceFormat().sizeHint()
        size.scale(self.widget.size().boundedTo(size), Qt.KeepAspectRatio)

        self.targetRect = QRect(QPoint(0, 0), size)
        self.targetRect.moveCenter(self.widget.rect().center())

    def paint(self, painter):
        if self.currentFrame.map(QAbstractVideoBuffer.ReadOnly):
            oldTransform = self.painter.transform()

        if self.surfaceFormat().scanLineDirection(
        ) == QVideoSurfaceFormat.BottomToTop:
            self.painter.scale(1, -1)
            self.painter.translate(0, -self.widget.height())

        image = QImage(self.currentFrame.bits(), self.currentFrame.width(),
                       self.currentFrame.height(),
                       self.currentFrame.bytesPerLine(), self.imageFormat)

        self.painter.drawImage(self.targetRect, image, self.sourceRect)

        self.painter.setTransform(oldTransform)

        self.currentFrame.unmap()