mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-05 20:42:11 -07:00
removed support of extracted(aligned) PNG faces. Use old builds to convert from PNG to JPG. fanseg model file in facelib/ is renamed
22 lines
840 B
Python
22 lines
840 B
Python
from .estimate_sharpness import estimate_sharpness
|
|
from .equalize_and_stack_square import equalize_and_stack_square
|
|
|
|
from .text import get_text_image, get_draw_text_lines
|
|
|
|
from .draw import draw_polygon, draw_rect
|
|
|
|
from .morph import morph_by_points
|
|
|
|
from .warp import gen_warp_params, warp_by_params
|
|
|
|
from .reduce_colors import reduce_colors
|
|
|
|
from .color_transfer import color_transfer, color_transfer_mix, color_transfer_sot, color_transfer_mkl, color_transfer_idt, color_hist_match, reinhard_color_transfer, linear_color_transfer, seamless_clone
|
|
|
|
from .common import normalize_channels, cut_odd_image, overlay_alpha_image
|
|
|
|
from .IEPolys import IEPolys
|
|
|
|
from .blursharpen import LinearMotionBlur, blursharpen
|
|
|
|
from .filters import apply_random_hsv_shift, apply_random_motion_blur, apply_random_gaussian_blur, apply_random_bilinear_resize
|