Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CameraImageProvider.py « cura - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff66170f3c4b1adddf92ebb4bc1a236667b3be3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from PyQt5.QtGui import QImage
from PyQt5.QtQuick import QQuickImageProvider
from PyQt5.QtCore import QSize

from UM.Application import Application

class CameraImageProvider(QQuickImageProvider):
    def __init__(self):
        QQuickImageProvider.__init__(self, QQuickImageProvider.Image)

    ##  Request a new image.
    def requestImage(self, id, size):
        for output_device in Application.getInstance().getOutputDeviceManager().getOutputDevices():
            try:
                return output_device.getCameraImage(), QSize(15, 15)
            except AttributeError:
                pass
        return QImage(), QSize(15, 15)