forked from mxcube/HardwareObjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Qt4_VideoMockup.py
executable file
·110 lines (89 loc) · 3.08 KB
/
Qt4_VideoMockup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Project: MXCuBE
# https://github.com/mxcube.
#
# This file is part of MXCuBE software.
#
# MXCuBE is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# MXCuBE is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MXCuBE. If not, see <http://www.gnu.org/licenses/>.
import os
import gevent
import numpy as np
from QtImport import QPixmap, QImage
from GenericVideoDevice import GenericVideoDevice
class Qt4_VideoMockup(GenericVideoDevice):
"""
Descript. :
"""
def __init__(self, name):
"""
Descript. :
"""
GenericVideoDevice.__init__(self, name)
self.force_update = None
self.image_type = None
self.image = None
def init(self):
"""
Descript. :
"""
current_path = os.path.dirname(os.path.abspath(__file__)).split(os.sep)
current_path = os.path.join(*current_path[1:-1])
image_path = os.path.join("/", current_path, "ExampleFiles/fakeimg.jpg")
self.image = QPixmap(image_path)
self.image_dimensions = (self.image.width(), self.image.height())
self.setIsReady(True)
GenericVideoDevice.init(self)
def get_image_dimensions(self):
return self.image_dimensions
def get_new_image(self):
self.emit("imageReceived", self.image)
def save_snapshot(self, filename, image_type='PNG'):
qimage = QImage(self.image)
qimage.save(filename, image_type)
def get_snapshot(self, bw=None, return_as_array=None):
qimage = QImage(self.image)
if return_as_array:
qimage = qimage.convertToFormat(4)
ptr = qimage.bits()
ptr.setsize(qimage.byteCount())
image_array = np.array(ptr).reshape(qimage.height(), qimage.width(), 4)
if bw:
return np.dot(image_array[...,:3], [0.299, 0.587, 0.144])
else:
return image_array
else:
if bw:
return qimage.convertToFormat(QImage.Format_Mono)
else:
return qimage
def get_contrast(self):
return 34
def set_contrast(self, contrast_value):
return
def get_brightness(self):
return 54
def set_brightness(self, brightness_value):
return
def get_gain(self):
return 32
def set_gain(self, gain_value):
return
def get_gamma(self):
return 22
def set_gamma(self, gamma_value):
return
def get_exposure_time(self):
return 0.23
def get_video_live(self):
return True