mirror of
https://github.com/iperov/DeepFaceLive.git
synced 2024-12-25 07:21:13 -08:00
128 lines
5.5 KiB
Python
128 lines
5.5 KiB
Python
import uuid
|
|
from typing import List, Union
|
|
|
|
from .ELandmarks2D import ELandmarks2D
|
|
from .EMaskType import EMaskType
|
|
from .FLandmarks2D import FLandmarks2D
|
|
from .FPose import FPose
|
|
from .FRect import FRect
|
|
from .IState import IState
|
|
|
|
|
|
class UFaceMark(IState):
|
|
def __init__(self):
|
|
"""
|
|
Describes single face in the image.
|
|
"""
|
|
self._uuid : Union[bytes, None] = None
|
|
self._UImage_uuid : Union[bytes, None] = None
|
|
self._UPerson_uuid : Union[bytes, None] = None
|
|
self._FRect : Union[FRect, None] = None
|
|
self._FLandmarks2D_list : List[FLandmarks2D] = []
|
|
self._FPose : Union[FPose, None] = None
|
|
#self._mask_info_list : List = []
|
|
|
|
def __repr__(self): return self.__str__()
|
|
def __str__(self):
|
|
return f"UFaceMark UUID:[...{self.get_uuid()[-4:].hex()}]"
|
|
|
|
@staticmethod
|
|
def from_state(state : dict) -> 'UFaceMark':
|
|
ufm = UFaceMark()
|
|
ufm.restore_state(state)
|
|
return ufm
|
|
|
|
def restore_state(self, state : dict):
|
|
self._uuid = state.get('_uuid', None)
|
|
self._UImage_uuid = state.get('_UImage_uuid', None)
|
|
self._UPerson_uuid = state.get('_UPerson_uuid', None)
|
|
self._FRect = IState._restore_IState_obj(FRect, state.get('_FRect', None))
|
|
self._FLandmarks2D_list = [ IState._restore_IState_obj(FLandmarks2D, lmrks_state) for lmrks_state in state['_FLandmarks2D_list'] ]
|
|
self._FPose = IState._restore_IState_obj(FPose, state.get('_FPose', None))
|
|
|
|
def dump_state(self) -> dict:
|
|
return {'_uuid' : self._uuid,
|
|
'_UImage_uuid' : self._UImage_uuid,
|
|
'_UPerson_uuid' : self._UPerson_uuid,
|
|
'_FRect' : IState._dump_IState_obj(self._FRect),
|
|
'_FLandmarks2D_list': tuple( IState._dump_IState_obj(fl) for fl in self._FLandmarks2D_list),
|
|
'_FPose' : IState._dump_IState_obj(self._FPose),
|
|
}
|
|
|
|
def get_uuid(self) -> Union[bytes, None]:
|
|
if self._uuid is None:
|
|
self._uuid = uuid.uuid4().bytes
|
|
return self._uuid
|
|
|
|
def set_uuid(self, uuid : Union[bytes, None]):
|
|
if uuid is not None and not isinstance(uuid, bytes):
|
|
raise ValueError(f'uuid must be an instance of bytes or None')
|
|
self._uuid = uuid
|
|
|
|
def get_UImage_uuid(self) -> Union[bytes, None]: return self._UImage_uuid
|
|
def set_UImage_uuid(self, UImage_uuid : Union[bytes, None]):
|
|
if UImage_uuid is not None and not isinstance(UImage_uuid, bytes):
|
|
raise ValueError(f'UImage_uuid must be an instance of bytes or None')
|
|
self._UImage_uuid = UImage_uuid
|
|
|
|
def get_UPerson_uuid(self) -> Union[bytes, None]: return self._UPerson_uuid
|
|
def set_UPerson_uuid(self, UPerson_uuid : Union[bytes, None]):
|
|
if UPerson_uuid is not None and not isinstance(UPerson_uuid, bytes):
|
|
raise ValueError(f'UPerson_uuid must be an instance of bytes or None')
|
|
self._UPerson_uuid = UPerson_uuid
|
|
|
|
def get_FRect(self) -> Union['FRect', None]: return self._FRect
|
|
def set_FRect(self, face_urect : Union['FRect', None]):
|
|
if face_urect is not None and not isinstance(face_urect, FRect):
|
|
raise ValueError(f'face_urect must be an instance of FRect or None')
|
|
self._FRect = face_urect
|
|
|
|
def get_all_FLandmarks2D(self) -> List[FLandmarks2D]: return self._FLandmarks2D_list
|
|
|
|
def get_FLandmarks2D_best(self) -> Union[FLandmarks2D, None]:
|
|
"""get best available FLandmarks2D """
|
|
lmrks = self.get_FLandmarks2D_by_type(ELandmarks2D.L468)
|
|
if lmrks is None:
|
|
lmrks = self.get_FLandmarks2D_by_type(ELandmarks2D.L68)
|
|
if lmrks is None:
|
|
lmrks = self.get_FLandmarks2D_by_type(ELandmarks2D.L5)
|
|
return lmrks
|
|
|
|
def get_FLandmarks2D_by_type(self, type : ELandmarks2D) -> Union[FLandmarks2D, None]:
|
|
"""get FLandmarks2D from list by type"""
|
|
if not isinstance(type, ELandmarks2D):
|
|
raise ValueError(f'type must be an instance of ELandmarks2D')
|
|
|
|
for ulmrks in self._FLandmarks2D_list:
|
|
if ulmrks.get_type() == type:
|
|
return ulmrks
|
|
return None
|
|
|
|
def add_FLandmarks2D(self, flmrks : FLandmarks2D):
|
|
if not isinstance(flmrks, FLandmarks2D):
|
|
raise ValueError('flmrks must be an instance of FLandmarks2D')
|
|
|
|
if self.get_FLandmarks2D_by_type(flmrks.get_type()) is not None:
|
|
raise Exception(f'_FLandmarks2D_list already contains type {flmrks.get_type()}.')
|
|
|
|
self._FLandmarks2D_list.append(flmrks)
|
|
|
|
def get_FPose(self) -> Union[FPose, None]: return self._FPose
|
|
def set_FPose(self, face_pose : FPose):
|
|
if not isinstance(face_pose, FPose):
|
|
raise ValueError('face_pose must be an instance of FPose')
|
|
self._FPose = face_pose
|
|
|
|
# def get_mask_info_list(self) -> List[Tuple[EMaskType, bytes, Affine2DMat]]:
|
|
# return self._mask_info_list
|
|
|
|
# def add_mask_info(self, mask_type : EMaskType, UImage_uuid : bytes, mask_to_mark_uni_mat : Affine2DMat):
|
|
# if not isinstance(mask_type, EMaskType):
|
|
# raise ValueError('mask_type must be an instance of EMaskType')
|
|
# if not isinstance(UImage_uuid, bytes):
|
|
# raise ValueError('UImage_uuid must be an instance of bytes')
|
|
# if not isinstance(mask_to_mark_uni_mat, Affine2DMat):
|
|
# raise ValueError('mask_to_mark_uni_mat must be an instance of Affine2DMat')
|
|
|
|
# self._mask_info_list.append( (mask_type, UImage_uuid, mask_to_mark_uni_mat) )
|