video-face-swap / DeepFakeAI /face_reference.py
tonyassi's picture
Upload 96 files
9ae3d29
raw
history blame contribute delete
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