cagedsheep's picture
Initial deploy: emotion fusion API with Docker
41e6846 verified
Raw
History Blame Contribute Delete
588 Bytes
"""Face expression analysis with InsightFace/RetinaFace detection and ViT classification."""
from face_module.face_emotion import FaceEmotionAnalyzer, NoFaceDetected
from face_module.camera_runtime import FaceCameraRuntime
from face_module.image_utils import image_to_rgb_array
from face_module.label_mapping import convert_deepface_emotion_scores, map_deepface_emotion_to_3class
__all__ = [
"FaceCameraRuntime",
"FaceEmotionAnalyzer",
"NoFaceDetected",
"convert_deepface_emotion_scores",
"image_to_rgb_array",
"map_deepface_emotion_to_3class",
]