Deep-Live-Cam/modules/typing.py

10 lines
242 B
Python
Raw Normal View History

2023-09-24 21:36:57 +08:00
from typing import Any
from insightface.app.common import Face as InsightFace
2023-09-24 21:36:57 +08:00
import numpy
# Alias for a detected face object from insightface
Face = InsightFace
# Alias for a numpy ndarray representing an image frame
Frame = numpy.ndarray