labelimg在安装时会有几个坑,这里填一下。 注意:我发这个博客时各相关库的版本是: python 3.6.4 pyqt5 5.10.1 pyqt5-tools 5.9.0.1.2 labelimg 1.7.0 我用的是anaconda,所以以anaconda prompt作为终端: 在Anac ...
分类:
其他好文 时间:
2018-10-01 10:35:06
阅读次数:
2745
1 import sys 2 from PyQt5.QtWidgets import QWidget,QLabel,QApplication 3 #demo_8: 绝对定位 4 5 class Example(QWidget): 6 def __init__(self): 7 super().__i... ...
分类:
其他好文 时间:
2018-09-30 18:19:37
阅读次数:
218
1 from PyQt5.QtWidgets import QApplication,QMainWindow,QAction 2 from PyQt5.QtGui import QIcon 3 #demo_7:菜单添加action以及状态栏显示消息 4 import sys 5 class Exam... ...
分类:
其他好文 时间:
2018-09-30 18:19:07
阅读次数:
365
1 #demo_12:网格布局 2 import sys 3 from PyQt5.QtWidgets import QApplication,QWidget,QGridLayout,QPushButton,QLineEdit,QTextEdit,QLabel 4 5 class Example(Q... ...
分类:
其他好文 时间:
2018-09-30 18:15:01
阅读次数:
165
该实例参考一个网上博客,但是这里也增加了个人编写习惯(这里没加入行和列的拉伸) ...
分类:
其他好文 时间:
2018-09-30 18:14:17
阅读次数:
193
1 #demo_11:网格布局 2 import sys 3 from PyQt5.QtWidgets import QApplication,QWidget,QGridLayout,QPushButton 4 5 class Example(QWidget): 6 def __init__(sel... ...
分类:
其他好文 时间:
2018-09-30 18:11:59
阅读次数:
858
1 import sys 2 from PyQt5.QtWidgets import QApplication, QWidget,QToolTip,QPushButton,QMessageBox,QDesktopWidget 3 from PyQt5.QtGui import QIcon,QFont... ...
1 from PyQt5.QtWidgets import QApplication,QMainWindow 2 import sys 3 #demo_6显示状态栏 4 class Example(QMainWindow): 5 def __init__(self): 6 super().__ini... ...
分类:
其他好文 时间:
2018-09-30 18:07:02
阅读次数:
735
1 # -*- coding:utf-8 -*- 2 ''' 3 Created on Sep 14, 2018 4 5 @author: SaShuangYiBing 6 7 Comment: 8 ''' 9 import sys 10 from PyQt5.QtWidgets import QA... ...
分类:
其他好文 时间:
2018-09-14 18:24:48
阅读次数:
202
程序运行后窗口打开,此时按 Ctrl+Q 组合键即可关闭该窗口 ...
分类:
其他好文 时间:
2018-09-14 16:19:24
阅读次数:
142