fix install wip
parent
054f693815
commit
f9fc0bbff1
@ -1,10 +1,10 @@
|
|||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
from numpy import uint8
|
from numpy import uint8
|
||||||
from numpy.typing import NDArray
|
|
||||||
from insightface.app.common import Face as IFace
|
from insightface.app.common import Face as IFace
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
PILImage = Image.Image
|
PILImage = Image.Image
|
||||||
CV2ImgU8 = NDArray[uint8]
|
CV2ImgU8 = np.ndarray[int, np.dtype[uint8]]
|
||||||
Face = IFace
|
Face = IFace
|
||||||
BoxCoords = Tuple[int, int, int, int]
|
BoxCoords = Tuple[int, int, int, int]
|
||||||
|
Loading…
Reference in New Issue