|
@@ -0,0 +1,40 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+
|
|
|
+# Form implementation generated from reading ui file 'jiankong.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(504, 470)
|
|
|
+ self.label = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label.setGeometry(QtCore.QRect(30, 20, 441, 241))
|
|
|
+ self.label.setStyleSheet("border-width:2px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-color:blue;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:red;\n"
|
|
|
+"border-bottom-color:green;\n"
|
|
|
+"border-left-color:pink;\n"
|
|
|
+"border-right-color:black;")
|
|
|
+ self.label.setObjectName("label")
|
|
|
+ self.pushButton = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(180, 360, 75, 23))
|
|
|
+ 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", "TextLabel"))
|
|
|
+ self.pushButton.setText(_translate("Dialog", "抓取图像"))
|