|
@@ -0,0 +1,68 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+
|
|
|
+# Form implementation generated from reading ui file 'traffic.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(312, 221)
|
|
|
+ self.label = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label.setGeometry(QtCore.QRect(30, 30, 181, 141))
|
|
|
+ self.label.setStyleSheet("border-width:2px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:red;\n"
|
|
|
+"border-left-color:red;\n"
|
|
|
+"border-bottom-color:red;\n"
|
|
|
+"border-right-color:red;\n"
|
|
|
+"")
|
|
|
+ self.label.setObjectName("label")
|
|
|
+ self.pushButton = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.pushButton.setGeometry(QtCore.QRect(90, 190, 75, 23))
|
|
|
+ self.pushButton.setStyleSheet("border-width:2px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:#ffffff;\n"
|
|
|
+"border-left-color:#ffffff;\n"
|
|
|
+"border-bottom-color:#bbbbbb;\n"
|
|
|
+"border-right-color:#bbbbbb;\n"
|
|
|
+"")
|
|
|
+ self.pushButton.setObjectName("pushButton")
|
|
|
+ self.label_2 = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label_2.setGeometry(QtCore.QRect(90, 0, 101, 16))
|
|
|
+ self.label_2.setObjectName("label_2")
|
|
|
+ self.label_3 = QtWidgets.QLabel(Dialog)
|
|
|
+ self.label_3.setGeometry(QtCore.QRect(230, 60, 51, 16))
|
|
|
+ self.label_3.setObjectName("label_3")
|
|
|
+ self.pushButton_2 = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.pushButton_2.setGeometry(QtCore.QRect(220, 90, 81, 81))
|
|
|
+ self.pushButton_2.setStyleSheet("border-width:2px;\n"
|
|
|
+"border-style:solid;\n"
|
|
|
+"border-radius:10px;\n"
|
|
|
+"border-top-color:red;\n"
|
|
|
+"border-left-color:red;\n"
|
|
|
+"border-bottom-color:red;\n"
|
|
|
+"border-right-color:red;\n"
|
|
|
+"")
|
|
|
+ self.pushButton_2.setObjectName("pushButton_2")
|
|
|
+
|
|
|
+ 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", "抓取图像"))
|
|
|
+ self.label_2.setText(_translate("Dialog", "智能交通监控系统"))
|
|
|
+ self.label_3.setText(_translate("Dialog", "识别信息:"))
|
|
|
+ self.pushButton_2.setText(_translate("Dialog", "显示信息:"))
|