HF-SillyTavern-Extras / talkinghead /tha3 /mocap /ifacialmocap_pose_converter.py
TomatoCocotree
上传
6a62ffb
raw
history blame
296 Bytes
from abc import ABC, abstractmethod
from typing import Dict, List
class IFacialMocapPoseConverter(ABC):
@abstractmethod
def convert(self, ifacialmocap_pose: Dict[str, float]) -> List[float]:
pass
@abstractmethod
def init_pose_converter_panel(self, parent):
pass