-
Notifications
You must be signed in to change notification settings - Fork 21
/
MyControl.py
169 lines (149 loc) · 5.52 KB
/
MyControl.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
from PySide2.QtWidgets import *
from PySide2.QtUiTools import *
from PySide2.QtCore import *
from PySide2 import QtGui,QtCore,QtWidgets
from PySide2.QtGui import *
import cv2
import sys, os
import PySide2
import firstSource
import secondSource
class MyPushButton(QPushButton):
def __init__(self,control,style,text,x,y,w,h,parent=None):
QPushButton.__init__(self,parent)
# control表示的是这个控件的提示信息控件
self.control=control
self.control.setVisible(False)
self.setStyleSheet(style)
self.setText(text)
self.move(x,y)
self.resize(w,h)
self.raise_()
def enterEvent(self, event):
self.control.setVisible(True)
def leaveEvent(self, event):
self.control.setVisible(False)
class MyLineEdit(QLineEdit):
def __init__(self,control,style,text,x,y,w,h,parent=None):
QLineEdit.__init__(self,parent)
# control表示的是这个控件的提示信息控件
self.control=control
self.control.setVisible(False)
self.setStyleSheet(style)
text = str(text)
self.setText(text)
self.move(x,y)
self.resize(w,h)
self.raise_()
def enterEvent(self, event):
self.control.setVisible(True)
def leaveEvent(self, event):
self.control.setVisible(False)
class MyMenuVideoControl(QLabel):
def mouseMoveEvent(self, ev):
self.setVisible(True)
def enterEvent(self, event):
self.setVisible(True)
def mousePressEvent(self, QMouseEvent):
if QMouseEvent.buttons() == QtCore.Qt.LeftButton:
if self.start == False:
self.setPixmap(QtGui.QPixmap(self.start_image))
self.timer_camera.start(50)
self.timer_camera.timeout.connect(self.OpenFrame1)
self.start = True
else:
self.setPixmap(QtGui.QPixmap(self.pause_image))
self.start = False
self.timer_camera.stop()
def OpenFrame1(self):
ret, frame = self.cap.read()
if ret:
self.Display_Image(frame)
else:
self.cap.release()
self.timer_camera.stop()
def Display_Image(self, image):
if (len(image.shape) == 3):
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
Q_img = QImage(image.data,
image.shape[1],
image.shape[0],
QImage.Format_RGB888)
elif (len(image.shape) == 1):
Q_img = QImage(image.data,
image.shape[1],
image.shape[0],
QImage.Format_Indexed8)
else:
Q_img = QImage(image.data,
image.shape[1],
image.shape[0],
QImage.Format_RGB888)
self.show_lable.setPixmap(QtGui.QPixmap(Q_img))
self.show_lable.setScaledContents(True)
# 这是那个播放键和暂停键
def __init__(self,x,y,w,h,show_label,video,parent):
QLabel.__init__(self,parent)
self.pause_image="source/second/start.png"
self.start_image="source/second/pause.png"
self.start=False
self.setPixmap(QtGui.QPixmap(self.pause_image))
self.setScaledContents(True)
self.cap = []
self.timer_camera = QTimer()
self.cap = cv2.VideoCapture(video)
self.show_lable=show_label
self.move(x,y)
self.resize(w,h)
class MyMenuVideoYellowLabel(QLabel):
def __init__(self,x,y,w,h,control,parent):
QLabel.__init__(self,parent)
self.move(x,y)
self.resize(w,h)
s="QLabel{\nbackground: rgba(255, 155, 0, 51);\n}"
self.setStyleSheet(s)
self.setVisible(False)
self.control=control
# def linkHovered(self, *args, **kwargs):
# self.control.setVisible(True)
#
def enterEvent(self, event):
self.setVisible(True)
self.control.setVisible(True)
def mouseMoveEvent(self, ev):
self.setVisible(True)
self.control.setVisible(True)
def leaveEvent(self, event):
self.control.setVisible(False)
self.setVisible(False)
class MyMenuVideoLabel(QLabel):
def __init__(self,picture,x,y,w,h,video,parent):
# 这是一个播放展示视频的控件,control是那个控制它的元件
QLabel.__init__(self,parent)
# control表示的是这个控件的提示信息控件
self.setPixmap(QtGui.QPixmap(picture))
self.setScaledContents(True)
self.move(x,y)
self.resize(w,h)
self.raise_()
self.setFixedSize(self.width(),self.height())
# self.control=MyMenuVideoControl(x+140,y+70,40,40,self,video,parent)
# self.yellow_label=MyMenuVideoYellowLabel(x,y,w,h,self.control,parent)
# self.control.raise_()
def enterEvent(self, event):
# self.yellow_label.setVisible(True)
i = 1
class double_photo_show_label(QLabel):
def __init__(self,parent,type,info,x,y,w,h):
# 0是图片
QLabel.__init__(self,parent)
self.resize(w, h)
self.move(x, y)
if type==0:
self.setScaledContents(True)
self.setPixmap(QtGui.QPixmap(info))
self.setText("")
else:
s="""width: 58px;\nheight: 36px;\nfont-size: 36px;\nfont-family: AlibabaPuHuiTi_2_85_Bold;\ncolor: #333333;\nline-height: 36px;\nfont-weight: bold;"""
self.setStyleSheet(s)
self.setText("ID"+str(info))