mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-05 12:36:42 -07:00
8 lines
218 B
Python
8 lines
218 B
Python
from PyQt5.QtCore import *
|
|
from PyQt5.QtGui import *
|
|
from PyQt5.QtWidgets import *
|
|
|
|
class QImageDB():
|
|
@staticmethod
|
|
def initialize(image_path):
|
|
QImageDB.intro = QImage ( str(image_path / 'intro.png') )
|