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