You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 25, 2019. It is now read-only.
BetaRavener edited this page Apr 2, 2016
·
1 revision
Welcome to the TeethCV wiki!
Instructions on creating GUI files
This project uses Qt5 based GUI for visualization and manipulation of data. To create or edit GUI files, you will need to download and install appropriate Qt5 package from official download page. After installed, Qt Creator can be used to create and edit Qt .ui files. These are by convention saved in ./gui/qt/ folder.
After creating and/or editing files, they need to be translated into PyQt5 format. This is done by running ./buildgui.py file within Anaconda environment, which generates corresponding PyQt5 files inside ./gui/ folder with names matching those of .ui files.
The ./gui/ folder is also a python module and therefore all generated files can already be used inside other scripts by simply importing from this module, e.g from gui.mainwindow import Ui_MainWindow.