You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
615 B
20 lines
615 B
# This is a sample Python script.
|
|
|
|
# Press Shift+F10 to execute it or replace it with your code.
|
|
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
|
|
import cv2 as cv3
|
|
import sys
|
|
from PyQt5.QtWidgets import QApplication,QWidget,QToolTip,QMessageBox,QMainWindow,QGridLayout,QPushButton,QTextEdit,QLabel,QLineEdit,QSizePolicy
|
|
from PyQt5.QtGui import QFont
|
|
from MainWindow import MainWindow
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app = QApplication(sys.argv)
|
|
|
|
mainWindow=MainWindow()
|
|
|
|
sys.exit(app.exec_())
|
|
|
|
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
|