|
@@ -0,0 +1,48 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+
|
|
|
+# Form implementation generated from reading ui file 'monitor.ui'
|
|
|
+#
|
|
|
+# Created by: PyQt5 UI code generator 5.15.9
|
|
|
+#
|
|
|
+# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
|
+# run again. Do not edit this file unless you know what you are doing.
|
|
|
+
|
|
|
+
|
|
|
+from PyQt5 import QtCore, QtGui, QtWidgets
|
|
|
+
|
|
|
+
|
|
|
+class Ui_Dialog(object):
|
|
|
+ def setupUi(self, Dialog):
|
|
|
+ Dialog.setObjectName("Dialog")
|
|
|
+ Dialog.resize(400, 300)
|
|
|
+ Dialog.setStyleSheet("border-width:1px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-color:white;\n"
|
|
|
+"border-radius:10px;")
|
|
|
+ self.label = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label.setGeometry(QtCore.QRect(90, 20, 191, 171))
|
|
|
+ self.label.setStyleSheet("border-width:1px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-color:blue;\n"
|
|
|
+"border-radius:10px;")
|
|
|
+ self.label.setObjectName("label")
|
|
|
+ self.pushButton = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(80, 202, 75, 41))
|
|
|
+ self.pushButton.setStyleSheet("border-width:1px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:#ffffff;\n"
|
|
|
+"border-left-color:#ffffff;\n"
|
|
|
+"border-bottom-color:#888888;\n"
|
|
|
+"border-right-color:#bbbbbb;\n"
|
|
|
+"")
|
|
|
+ self.pushButton.setObjectName("pushButton")
|
|
|
+
|
|
|
+ self.retranslateUi(Dialog)
|
|
|
+ QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
+
|
|
|
+ def retranslateUi(self, Dialog):
|
|
|
+ _translate = QtCore.QCoreApplication.translate
|
|
|
+ Dialog.setWindowTitle(_translate("Dialog", "智能交通监控系统"))
|
|
|
+ self.label.setText(_translate("Dialog", "视频显示区"))
|
|
|
+ self.pushButton.setText(_translate("Dialog", "处理视频"))
|