|
@@ -0,0 +1,35 @@
|
|
|
+# -*- 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(400, 300)
|
|
|
+ self.lbvideo = QtWidgets.QLabel(Dialog)
|
|
|
+ self.lbvideo.setGeometry(QtCore.QRect(50, 60, 251, 161))
|
|
|
+ self.lbvideo.setStyleSheet("border-width:1px;\n"
|
|
|
+"border-sytle:solid;\n"
|
|
|
+"border-color:FF0000;")
|
|
|
+ self.lbvideo.setObjectName("lbvideo")
|
|
|
+ self.btucapture = QtWidgets.QPushButton(Dialog)
|
|
|
+ self.btucapture.setGeometry(QtCore.QRect(130, 260, 93, 28))
|
|
|
+ self.btucapture.setObjectName("btucapture")
|
|
|
+
|
|
|
+ self.retranslateUi(Dialog)
|
|
|
+ QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
+
|
|
|
+ def retranslateUi(self, Dialog):
|
|
|
+ _translate = QtCore.QCoreApplication.translate
|
|
|
+ Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
|
|
+ self.lbvideo.setText(_translate("Dialog", "TextLabel"))
|
|
|
+ self.btucapture.setText(_translate("Dialog", "抓取图像"))
|