opencv3 + PyQt5 サンプル
require
pyqt5
pyinstaller
opencv3
numpy
- qtのインストールとか => Python QTアプリ Standalone App化メモ
- opencv3をいれる。=> https://github.com/gollowars/install-opencv3-python-osx/blob/master/install-opencv3-python3-osx.sh
brew install qt5
これでQtDesignerが手に入る。
QtDeisgnerでuiつくって
pyuic5 mywidgets.ui -o mywidgest.py
でuiを簡単に利用出来る。
pyinstaller app.py --windowed --onefile
でstandaloneアプリ出来上がり。