本项目基于opencv-python,支持基本的图像处理和常用的图像算法
- 图片拼接
- 画笔
- 几何绘制
- 高斯模糊
- 边缘检测
- 锐化
目前界面比较简陋, 持续优化中...
配置python环境:
没有python环境可无脑安装miniconda, 官网:https://docs.anaconda.com/miniconda/
直接下载:https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
安装依赖:
配置python环境后, 在项目目录下cmd命令行执行命令:
pip install -r requirement.txt
在项目目录下使用命令行:
python main.py
文档:https://pywebview.flowrl.com/guide/
pip install pywebview
打包程序会将虚拟环境中的所有依赖都打包进去,因此需要新建虚拟环境,只安装必要的包
文档:https://pyinstaller.org/en/stable/usage.html
pip install pyinstaller
pyinstaller --onefile main.py
pyinstaller -F -w -i 图标.ico main.py