VTK激光点可视化Python

import sys

from PyQt5 import QtWidgets, QtGui

__version__ = '0.1.0'
__author__ = 'xuxc'
__appname__ = 'PyPost'


class PyPostMainWindow(QtWidgets.QMainWindow):
    def __init__(self):
        super(PyPostMainWindow, self).__init__()

        self.setWindowTitle('{} - v{}'.format(__appname__, __version__))


if __name__ == '__main__':
    app = QtWidgets.QApplication(sys.argv)
    app.setApplicationName('{}'.format(__appname__))
    win = PyPostMainWindow()
    win.show()
    app.exec_()

  

posted @ 2024-03-28 13:10  飞雪飘鸿  阅读(4)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL