mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2024-11-20 23:10:08 -08:00
5c315cab68
Changed frame line design Changed loading frame design
9 lines
218 B
Python
9 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') )
|