Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 1.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  1. from .estimate_sharpness import estimate_sharpness
  2. from .equalize_and_stack_square import equalize_and_stack_square
  3. from .text import get_text_image, get_draw_text_lines
  4. from .draw import draw_polygon, draw_rect
  5. from .morph import morph_by_points
  6. from .warp import gen_warp_params, warp_by_params
  7. from .reduce_colors import reduce_colors
  8. 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
  9. from .common import random_crop, normalize_channels, cut_odd_image, overlay_alpha_image
  10. from .SegIEPolys import *
  11. from .blursharpen import LinearMotionBlur, blursharpen
  12. from .filters import apply_random_rgb_levels, \
  13. apply_random_overlay_triangle, \
  14. apply_random_hsv_shift, \
  15. apply_random_sharpen, \
  16. apply_random_motion_blur, \
  17. apply_random_gaussian_blur, \
  18. apply_random_nearest_resize, \
  19. apply_random_bilinear_resize, \
  20. apply_random_jpeg_compress, \
  21. apply_random_relight
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...