You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
344 B
Python
18 lines
344 B
Python
from typing import Tuple
|
|
from numpy import uint8
|
|
from insightface.app.common import Face as IFace
|
|
from PIL import Image
|
|
import numpy as np
|
|
from enum import Enum
|
|
|
|
PILImage = Image.Image
|
|
CV2ImgU8 = np.ndarray[int, np.dtype[uint8]]
|
|
Face = IFace
|
|
BoxCoords = Tuple[int, int, int, int]
|
|
|
|
|
|
class Gender(Enum):
|
|
AUTO = -1
|
|
FEMALE = 0
|
|
MALE = 1
|