├── .gitignore ├── LICENSE ├── README.md ├── SL1_to_Photon.bat ├── SL1_to_Photon.py ├── SL1_to_Photon_gui.py ├── gui ├── convert_ui_py.bat ├── mainwindow.ui └── ui_mainwindow.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/README.md -------------------------------------------------------------------------------- /SL1_to_Photon.bat: -------------------------------------------------------------------------------- 1 | %~dp0venv\Scripts\python %~dp0SL1_to_Photon.py %* 2 | PAUSE -------------------------------------------------------------------------------- /SL1_to_Photon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/SL1_to_Photon.py -------------------------------------------------------------------------------- /SL1_to_Photon_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/SL1_to_Photon_gui.py -------------------------------------------------------------------------------- /gui/convert_ui_py.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/gui/convert_ui_py.bat -------------------------------------------------------------------------------- /gui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/gui/mainwindow.ui -------------------------------------------------------------------------------- /gui/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/gui/ui_mainwindow.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.16.2 2 | Pillow>=6.0.0 3 | pyphotonfile>=0.1.1 4 | PySide2>=5.12.2 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fookatchu/SL1toPhoton/HEAD/setup.py --------------------------------------------------------------------------------