notes.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. 1. 条件
  2. 安装的模块:PyQt5, PyQt5-tools
  3. where python 确定Python安装路径: ${PYTHON_HOME}
  4. 安装的模块在
  5. ${PYTHON_HOME}/Lib/site-packages/PyQt5
  6. ${PYTHON_HOME}/Lib/site-packages/pyqt5-tools
  7. ${PYTHON_HOME}/Lib/site-packages/qt5-application
  8. ${PYTHON_HOME}/Lib/site-packages/qt5_applications/Qt/bin
  9. |- designer.exe GUI(Graphic User Interface)
  10. |- uic.exe 把我们设计的GUI转换为python代码
  11. |- Scripts\pyuic5.exe = uic.exe
  12. 备注:
  13. pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple
  14. pip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/simple
  15. 2. 开发一个窗体程序
  16. 2.1. 创建QApplication
  17. 2.2. 创建对话框
  18. 窗体:主窗体(菜单),对话框(无菜单),闪屏(没有标题栏)
  19. 3. 在窗体添加按钮,文本框,标签,多选案例,单旋按钮。。。。。
  20. 4. 程序开发的结构(模式)
  21. main.py # 程序入口
  22. 根目录monitor
  23. |- ui # 界面设计
  24. |- form # 窗体
  25. |- biz # 业务实现(人工智能推理接口)
  26. |- dev # 摄像头的处理