Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
iperov
GitHub Repository: iperov/deepfacelab
Path: blob/master/XSegEditor/QImageDB.py
628 views
1
from PyQt5.QtCore import *
2
from PyQt5.QtGui import *
3
from PyQt5.QtWidgets import *
4
5
class QImageDB():
6
@staticmethod
7
def initialize(image_path):
8
QImageDB.intro = QImage ( str(image_path / 'intro.png') )
9
10