from abc import ABC, abstractmethod class IHPEModule(ABC): # This method starts HPE using a camera specified by its name @abstractmethod def startHPEwithCamera(self, camera_name, export_landmarks): pass