vfs-3087 / DeepFakeAI /face_reference.py
ahjvdjf33's picture
Upload 102 files
2faefa9 verified
raw
history blame
No virus
335 Bytes
from typing import Optional
from DeepFakeAI.typing import Face
FACE_REFERENCE = None
def get_face_reference() -> Optional[Face]:
return FACE_REFERENCE
def set_face_reference(face : Face) -> None:
global FACE_REFERENCE
FACE_REFERENCE = face
def clear_face_reference() -> None:
global FACE_REFERENCE
FACE_REFERENCE = None