File size: 296 Bytes
60094bd
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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