Spaces:
Runtime error
Runtime error
File size: 7,526 Bytes
7dd7207 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
import os
from PIL import Image
import numpy as np
import pandas as pd
import cv2
import string
import random
CV2_FONTS = [
#cv2.FONT_HERSHEY_COMPLEX,
cv2.FONT_HERSHEY_COMPLEX_SMALL,
cv2.FONT_HERSHEY_DUPLEX,
cv2.FONT_HERSHEY_PLAIN,
cv2.FONT_HERSHEY_SIMPLEX,
cv2.FONT_HERSHEY_TRIPLEX,
cv2.FONT_ITALIC,
cv2.QT_FONT_BLACK,
cv2.QT_FONT_NORMAL
]
# рандомный float между x и y
def random_float(x, y):
return random.random()*(y-x)+x
# вычисляет размер текста в пикселях для cv2.putText
def get_text_size(text, font, font_scale, thickness):
(w, h), baseline = cv2.getTextSize(text, font, font_scale, thickness)
return w, h+baseline
# вычисляет какой нужен font_scale для определенного размера текста (по высоте)
def get_font_scale(needed_height, text, font, thickness):
w, h = get_text_size(text, font, 1, thickness)
return needed_height/h
# добавляет текст на изображение
def place_text(image, text, color=(255,255,255), alpha=1, position=(0, 0), angle=0,
font=cv2.FONT_HERSHEY_SIMPLEX, font_scale=1.0, thickness=3):
image = np.array(image)
overlay = np.zeros_like(image)
output = image.copy()
cv2.putText(overlay, text, position, font, font_scale, color, thickness)
if angle != 0:
text_w, text_h = get_text_size(text, font, font_scale, thickness)
rotate_M = cv2.getRotationMatrix2D((position[0]+text_w//2, position[1]-text_h//2), angle, 1)
overlay = cv2.warpAffine(overlay, rotate_M, (overlay.shape[1], overlay.shape[0]))
overlay[overlay==0] = image[overlay==0]
cv2.addWeighted(overlay, alpha, output, 1-alpha, 0, output)
return Image.fromarray(output)
def get_random_font_params(text, text_height, fonts, font_thickness_range):
font = random.choice(fonts)
font_thickness_range_scaled = [int(font_thickness_range[0]*(text_height/35)),
int(font_thickness_range[1]*(text_height/85))]
try:
font_thickness = min(random.randint(*font_thickness_range_scaled), 2)
except ValueError:
font_thickness = 2
font_scale = get_font_scale(text_height, text, font, font_thickness)
return font, font_scale, font_thickness
# устанавливает вотермарку в центре изображения с рандомными параметрами
def place_random_centered_watermark(
pil_image,
text,
center_point_range_shift=(-0.025, 0.025),
random_angle=(0,0),
text_height_in_percent_range=(0.15, 0.18),
text_alpha_range=(0.23, 0.5),
fonts=CV2_FONTS,
font_thickness_range=(2, 7),
colors=[(255,255,255)]
):
w, h = pil_image.size
position_shift_x = random_float(*center_point_range_shift)
offset_x = int(w*position_shift_x)
position_shift_y = random_float(*center_point_range_shift)
offset_y = int(w*position_shift_y)
text_height = int(h*random_float(*text_height_in_percent_range))
font, font_scale, font_thickness = get_random_font_params(text, text_height, fonts, font_thickness_range)
text_width, _ = get_text_size(text, font, font_scale, font_thickness)
position_x = int((w/2)-text_width/2+offset_x)
position_y = int((h/2)+text_height/2+offset_y)
return place_text(
pil_image,
text,
color=random.choice(colors),
alpha=random_float(*text_alpha_range),
position=(position_x, position_y),
angle=random.randint(*random_angle),
thickness=font_thickness,
font=font,
font_scale=font_scale
)
def place_random_watermark(
pil_image,
text,
random_angle=(0,0),
text_height_in_percent_range=(0.10, 0.18),
text_alpha_range=(0.18, 0.4),
fonts=CV2_FONTS,
font_thickness_range=(2, 6),
colors=[(255,255,255)]
):
w, h = pil_image.size
text_height = int(h*random_float(*text_height_in_percent_range))
font, font_scale, font_thickness = get_random_font_params(text, text_height, fonts, font_thickness_range)
text_width, _ = get_text_size(text, font, font_scale, font_thickness)
position_x = random.randint(0, max(w-text_width, 10))
position_y = random.randint(text_height, h)
return place_text(
pil_image,
text,
color=random.choice(colors),
alpha=random_float(*text_alpha_range),
position=(position_x, position_y),
angle=random.randint(*random_angle),
thickness=font_thickness,
font=font,
font_scale=font_scale
)
def center_crop(image, w, h):
center = image.shape
x = center[1]/2 - w/2
y = center[0]/2 - h/2
return image[int(y):int(y+h), int(x):int(x+w)]
# добавляет текст в шахматном порядке на изображение
def place_text_checkerboard(image, text, color=(255,255,255), alpha=1, step_x=0.1, step_y=0.1, angle=0,
font=cv2.FONT_HERSHEY_SIMPLEX, font_scale=1.0, thickness=3):
image_size = image.size
image = np.array(image.convert('RGB'))
if angle != 0:
border_scale = 0.4
overlay_size = [int(i*(1+border_scale)) for i in list(image_size)]
else:
overlay_size = image_size
w, h = overlay_size
overlay = np.zeros((overlay_size[1], overlay_size[0], 3)) # change dimensions
output = image.copy()
text_w, text_h = get_text_size(text, font, font_scale, thickness)
c = 0
for rel_pos_x in np.arange(0, 1, step_x):
c += 1
for rel_pos_y in np.arange(text_h/h+(c%2)*step_y/2, 1, step_y):
position = (int(w*rel_pos_x), int(h*rel_pos_y))
cv2.putText(overlay, text, position, font, font_scale, color, thickness)
if angle != 0:
rotate_M = cv2.getRotationMatrix2D((w//2, h//2), angle, 1)
overlay = cv2.warpAffine(overlay, rotate_M, (overlay.shape[1], overlay.shape[0]))
overlay = center_crop(overlay, image_size[0], image_size[1])
overlay[overlay==0] = image[overlay==0]
overlay = overlay.astype(np.uint8)
cv2.addWeighted(overlay, alpha, output, 1-alpha, 0, output)
return Image.fromarray(output)
def place_random_diagonal_watermark(
pil_image,
text,
random_step_x=(0.25, 0.4),
random_step_y=(0.25, 0.4),
random_angle=(-60,60),
text_height_in_percent_range=(0.10, 0.18),
text_alpha_range=(0.18, 0.4),
fonts=CV2_FONTS,
font_thickness_range=(2, 6),
colors=[(255,255,255)]
):
w, h = pil_image.size
text_height = int(h*random_float(*text_height_in_percent_range))
font, font_scale, font_thickness = get_random_font_params(text, text_height, fonts, font_thickness_range)
text_width, _ = get_text_size(text, font, font_scale, font_thickness)
return place_text_checkerboard(
pil_image,
text,
color=random.choice(colors),
alpha=random_float(*text_alpha_range),
step_x=random_float(*random_step_x),
step_y=random_float(*random_step_y),
angle=random.randint(*random_angle),
thickness=font_thickness,
font=font,
font_scale=font_scale
) |