MorphGuard / MorphVideo /__init__.py
juanquy's picture
Initial clean commit of modular MorphGuard
2978bba
Raw
History Blame Contribute Delete
475 Bytes
"""MorphVideo - Promotional Video Generation System
This module creates promotional videos featuring smooth face morphing transitions
organized by eye shape characteristics across diverse human faces.
"""
from .video_generator import MorphVideoGenerator
from .eye_shape_classifier import EyeShapeClassifier
from .face_selector import FaceSelector
from .face_morpher import FaceMorpher
__all__ = ['MorphVideoGenerator', 'EyeShapeClassifier', 'FaceSelector', 'FaceMorpher']