Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
iperov
GitHub Repository: iperov/deepfacelab
Path: blob/master/core/imagelib/__init__.py
628 views
1
from .estimate_sharpness import estimate_sharpness
2
3
from .equalize_and_stack_square import equalize_and_stack_square
4
5
from .text import get_text_image, get_draw_text_lines
6
7
from .draw import draw_polygon, draw_rect
8
9
from .morph import morph_by_points
10
11
from .warp import gen_warp_params, warp_by_params
12
13
from .reduce_colors import reduce_colors
14
15
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
16
17
from .common import random_crop, normalize_channels, cut_odd_image, overlay_alpha_image
18
19
from .SegIEPolys import *
20
21
from .blursharpen import LinearMotionBlur, blursharpen
22
23
from .filters import apply_random_rgb_levels, \
24
apply_random_overlay_triangle, \
25
apply_random_hsv_shift, \
26
apply_random_sharpen, \
27
apply_random_motion_blur, \
28
apply_random_gaussian_blur, \
29
apply_random_nearest_resize, \
30
apply_random_bilinear_resize, \
31
apply_random_jpeg_compress, \
32
apply_random_relight
33
34