mirror of
https://github.com/zebrajr/faceswap.git
synced 2025-12-06 00:20:09 +01:00
10 lines
525 B
Python
10 lines
525 B
Python
#!/usr/bin/env python3
|
|
""" Package for handling alignments files, detected faces and aligned faces along with their
|
|
associated objects. """
|
|
from .aligned_face import (AlignedFace, get_adjusted_center, get_matrix_scaling,
|
|
get_centered_size, transform_image)
|
|
from .aligned_mask import BlurMask, LandmarksMask, Mask
|
|
from .alignments import Alignments
|
|
from .constants import CenteringType, EXTRACT_RATIOS, LANDMARK_PARTS, LandmarkType
|
|
from .detected_face import DetectedFace, update_legacy_png_header
|