Spaces:
Sleeping
Sleeping
File size: 15,228 Bytes
801501a |
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
import os
import textwrap
from pathlib import Path
from typing import List
import cv2
import numpy as np
import PIL
from PIL import Image, ImageChops, ImageDraw, ImageFont
kMinMargin = 10
def stack_images_horizontally(images: List, save_path=None):
widths, heights = list(zip(*(i.size for i in images)))
total_width = sum(widths)
max_height = max(heights)
new_im = Image.new("RGBA", (total_width, max_height))
x_offset = 0
for im in images:
new_im.paste(im, (x_offset, 0))
x_offset += im.size[0]
if save_path is not None:
new_im.save(save_path)
return new_im
def stack_images_vertically(images: List, save_path=None):
widths, heights = list(zip(*(i.size for i in images)))
max_width = max(widths)
total_height = sum(heights)
new_im = Image.new("RGBA", (max_width, total_height))
y_offset = 0
for im in images:
new_im.paste(im, (0, y_offset))
y_offset += im.size[1]
if save_path is not None:
new_im.save(save_path)
return new_im
def merge_images(images: List):
if isinstance(images[0], Image.Image):
return stack_images_horizontally(images)
images = list(map(stack_images_horizontally, images))
return stack_images_vertically(images)
def draw_text(
image: PIL.Image,
text: str,
font_size=None,
font_color=(0, 0, 0),
max_seq_length=100,
):
W, H = image.size
S = max(W, H)
font_path = os.path.join(cv2.__path__[0], "qt", "fonts", "DejaVuSans.ttf")
font_size = max(int(S / 32), 20) if font_size is None else font_size
font = ImageFont.truetype(font_path, size=font_size)
text_wrapped = textwrap.fill(text, max_seq_length)
w, h = font.getsize(text_wrapped)
new_im = Image.new("RGBA", (W, H + h))
new_im.paste(image, (0, h))
draw = ImageDraw.Draw(new_im)
draw.text((max((W - w) / 2, 0), 0), text_wrapped, font=font, fill=font_color)
return new_im
def to_white(img):
new_img = Image.new("RGBA", img.size, "WHITE")
new_img.paste(img, (0, 0), img)
new_img.convert("RGB")
return new_img
def get_bbox(in_file, fuzz=17.5):
im = Image.open(in_file)
# bbox = im.convert("RGBa").getbbox()
try:
bg = Image.new(im.mode, im.size, im.getpixel((0, 0)))
except OSError as err:
print(f"error {in_file}")
raise OSError
diff = ImageChops.difference(im, bg)
offset = int(round(float(fuzz) / 100.0 * 255.0))
diff = ImageChops.add(diff, diff, 2.0, -offset)
bbox = diff.getbbox()
bx_min = max(bbox[0] - kMinMargin, 0)
by_min = max(bbox[1] - kMinMargin, 0)
bx_max = min(bbox[2] + kMinMargin, im.size[0])
by_max = min(bbox[3] + kMinMargin, im.size[1])
bbox_margin = (bx_min, by_min, bx_max, by_max)
return bbox_margin
def get_largest_bbox(in_files):
largest_bbox = (float("Inf"), float("Inf"), -float("Inf"), -float("Inf"))
for in_file in in_files:
bbox = get_bbox(in_file)
largest_bbox = (
min(bbox[0], largest_bbox[0]),
min(bbox[1], largest_bbox[1]),
max(bbox[2], largest_bbox[2]),
max(bbox[3], largest_bbox[3]),
)
return largest_bbox
def trim(in_file, out_file, keep_ratio):
# im = Image.open(in_file)
# bbox = im.convert("RGBa").getbbox()
bbox = get_bbox(in_file)
trim_with_bbox(in_file, out_file, bbox, keep_ratio)
def trim_with_bbox(in_file, out_file, bbox, keep_ratio):
im = Image.open(in_file)
if keep_ratio:
w, h = im.size
r = float(w) / h
bx_min, by_min, bx_max, by_max = bbox[0], bbox[1], bbox[2], bbox[3]
bw, bh = bx_max - bx_min, by_max - by_min
bcx, bcy = 0.5 * (bx_min + bx_max), 0.5 * (by_min + by_max)
br = float(bw) / bh
if br > r:
bh = int(round(bw / r))
by_min, by_max = int(round(bcy - 0.5 * bh)), int(round(bcy + 0.5 * bh))
if by_min < 0:
by_min = 0
by_max = bh
elif by_max > h:
by_max = h
by_min = h - bh
assert bh >= bh
elif br < r:
bw = int(round(bh * r))
bx_min, bx_max = int(round(bcx - 0.5 * bw)), int(round(bcx + 0.5 * bw))
if bx_min < 0:
bx_min = 0
bx_max = bw
elif bx_max > w:
bx_max = w
bx_min = w - bw
bbox = (bx_min, by_min, bx_max, by_max)
im.crop(bbox).save(out_file, "png")
def trim_with_largest_bbox(in_files, out_files, keep_ratio):
assert len(in_files) == len(out_files)
bbox = get_largest_bbox(in_files)
for i in range(len(in_files)):
trim_with_bbox(in_files[i], out_files[i], bbox, keep_ratio)
def create_image_table_tight_centering(
in_img_files, out_img_file, max_total_width=2560, draw_col_lines=[]
):
n_rows = len(in_img_files)
n_cols = len(in_img_files[0])
# Compute width and height of each image.
width = 0
row_top = [float("Inf")] * n_rows
row_bottom = [-float("Inf")] * n_rows
for row in range(n_rows):
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_width = img_right - img_left
width = max(width, img_width)
row_top[row] = min(row_top[row], img_top)
row_bottom[row] = max(row_bottom[row], img_bottom)
row_height = [bottom - top for bottom, top in zip(row_bottom, row_top)]
# Combine images.
cmd = "convert "
for row in range(n_rows):
cmd += " \( "
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_h_center = 0.5 * (img_left + img_right)
left = int(img_h_center - 0.5 * width)
cmd += " \( {} ".format(in_img_files[row][col])
cmd += "-gravity NorthWest -crop {}x{}+{}+{} +repage \) ".format(
width, row_height[row], left, row_top[row]
)
cmd += " -gravity center -background white +append \) "
cmd += "-append " + out_img_file
print(cmd)
os.system(cmd)
# Draw lines for columns.
for col in draw_col_lines:
if col <= 0 or col >= n_cols:
continue
strokewidth = max(int(round(width * 0.005)), 1)
pos = col * width
cmd = "convert " + out_img_file + " -stroke black "
cmd += "-strokewidth {} ".format(strokewidth)
cmd += '-draw "line {0},0 {0},10000000" '.format(pos) + out_img_file
os.system(cmd)
# Resize the combined image if it is too large.
print(n_cols * width)
if (n_cols * width) > max_total_width:
cmd = "convert {0} -resize {1}x +repage {0}".format(
out_img_file, max_total_width
)
print(cmd)
os.system(cmd)
print("Saved '{}'.".format(out_img_file))
return width, row_height
def create_image_table_tight_centering_per_row(
in_img_files, out_img_dir, max_total_width=1280, draw_col_lines=[]
):
n_rows = len(in_img_files)
n_cols = len(in_img_files[0])
# Compute width and height of each image.
width = 0
row_top = [float("Inf")] * n_rows
row_bottom = [-float("Inf")] * n_rows
for row in range(n_rows):
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_width = img_right - img_left
width = max(width, img_width)
row_top[row] = min(row_top[row], img_top)
row_bottom[row] = max(row_bottom[row], img_bottom)
row_height = [bottom - top for bottom, top in zip(row_bottom, row_top)]
if not os.path.exists(out_img_dir):
os.makedirs(out_img_dir)
# Combine images.
for row in range(n_rows):
out_img_file = os.path.join(out_img_dir, "{:02d}.png".format(row))
cmd = "convert "
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_h_center = 0.5 * (img_left + img_right)
left = int(img_h_center - 0.5 * width)
cmd += " \( {} ".format(in_img_files[row][col])
cmd += "-gravity NorthWest -crop {}x{}+{}+{} +repage \) ".format(
width, row_height[row], left, row_top[row]
)
cmd += " -gravity center -background white +append " + out_img_file
print(cmd)
os.system(cmd)
# Draw lines for columns.
for col in draw_col_lines:
if col <= 0 or col >= n_cols:
continue
strokewidth = max(int(round(width * 0.005)), 1)
pos = col * width
cmd = "convert " + out_img_file + " -stroke black "
cmd += "-strokewidth {} ".format(strokewidth)
cmd += '-draw "line {0},0 {0},10000000" '.format(pos) + out_img_file
os.system(cmd)
print(cmd)
# Resize the combined image if it is too large.
print(n_cols * width)
if (n_cols * width) > max_total_width:
cmd = "convert {0} -resize {1}x +repage {0}".format(
out_img_file, max_total_width
)
print(cmd)
os.system(cmd)
print("Saved '{}'.".format(out_img_file))
return width, row_height
def create_image_table_tight_centering_per_col(
in_img_files, out_img_dir, max_width=2560, draw_col_lines=[]
):
n_rows = len(in_img_files)
n_cols = len(in_img_files[0])
# Compute width and height of each image.
width = 0
row_top = [float("Inf")] * n_rows
row_bottom = [-float("Inf")] * n_rows
for row in range(n_rows):
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_width = img_right - img_left
width = max(width, img_width)
row_top[row] = min(row_top[row], img_top)
row_bottom[row] = max(row_bottom[row], img_bottom)
row_height = [bottom - top for bottom, top in zip(row_bottom, row_top)]
if not os.path.exists(out_img_dir):
os.makedirs(out_img_dir)
# Combine images.
for col in range(n_cols):
out_img_file = os.path.join(out_img_dir, "{:02d}.png".format(col))
cmd = "convert "
for row in range(n_rows):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_h_center = 0.5 * (img_left + img_right)
left = int(img_h_center - 0.5 * width)
cmd += " \( {} ".format(in_img_files[row][col])
cmd += "-gravity NorthWest -crop {}x{}+{}+{} +repage \) ".format(
width, row_height[row], left, row_top[row]
)
cmd += " -gravity center -background white -append " + out_img_file
print(cmd)
os.system(cmd)
# Resize the combined image if it is too large.
if width > max_width:
cmd = "convert {0} -resize {1}x +repage {0}".format(out_img_file, max_width)
print(cmd)
os.system(cmd)
print("Saved '{}'.".format(out_img_file))
return width, row_height
def create_image_table_after_crop(
in_img_files,
out_img_file,
lbox=None,
tbox=None,
rbox=None,
dbox=None,
max_total_width=2560,
draw_col_lines=[],
transpose=False,
verbose=False,
line_multi=None,
):
out_img_file = str(out_img_file)
if not isinstance(in_img_files[0], list):
in_img_files = [in_img_files]
in_img_files = [[x for x in row if len(str(x)) != 0] for row in in_img_files]
if transpose:
x = np.array(in_img_files)
in_img_files = x.transpose().tolist()
n_rows = len(in_img_files)
n_cols = len(in_img_files[0])
# Compute width and height of each image.
width = 0
row_top = [float("Inf")] * n_rows
row_bottom = [-float("Inf")] * n_rows
for row in range(n_rows):
for col in range(n_cols):
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
# img_left, img_top, img_right, img_bottom = lbox, tbox, rbox, dbox
img_left = img_left if lbox is None else lbox
img_top = img_top if tbox is None else tbox
img_right = img_right if rbox is None else rbox
img_bottom = img_bottom if dbox is None else dbox
img_width = img_right - img_left
width = max(width, img_width)
row_top[row] = min(row_top[row], img_top)
row_bottom[row] = max(row_bottom[row], img_bottom)
row_height = [bottom - top for bottom, top in zip(row_bottom, row_top)]
# Combine images.
cmd = "convert "
for row in range(n_rows):
cmd += " \( "
for col in range(n_cols):
# img_left, img_top, img_right, img_bottom = lbox, tbox, rbox, dbox
img_left, img_top, img_right, img_bottom = get_bbox(in_img_files[row][col])
img_left = img_left if lbox is None else lbox
img_top = img_top if tbox is None else tbox
img_right = img_right if rbox is None else rbox
img_bottom = img_bottom if dbox is None else dbox
img_h_center = 0.5 * (img_left + img_right)
left = int(img_h_center - 0.5 * width)
cmd += " \( {} ".format(in_img_files[row][col])
cmd += "-gravity NorthWest -crop {}x{}+{}+{} +repage \) ".format(
width, row_height[row], left, row_top[row]
)
cmd += " -gravity center -background white +append \) "
cmd += "-append " + out_img_file
if verbose:
print(cmd)
os.system(cmd)
# Draw lines for columns.
for col in draw_col_lines:
if col <= 0 or col >= n_cols:
continue
strokewidth = max(int(round(width * 0.005)), 1)
if line_multi is not None:
strokewidth *= line_multi
pos = col * width
cmd = "convert " + out_img_file + " -stroke black "
cmd += "-strokewidth {} ".format(strokewidth)
cmd += '-draw "line {0},0 {0},10000000" '.format(pos) + out_img_file
if verbose:
print(cmd)
os.system(cmd)
# Resize the combined image if it is too large.
# print(n_cols * width)
# if (n_cols * width) > max_total_width:
# cmd = "convert {0} -resize {1}x +repage {0}".format(
# out_img_file, max_total_width
# )
# print(cmd)
# os.system(cmd)
print("Saved '{}'.".format(out_img_file))
return width, row_height
def make_2dgrid(input_list, num_rows=None, num_cols=None):
# if num_rows * num_cols != len(input_list):
# raise Warning("Number of rows and columns do not match the length of the input list.")
if num_rows is None and num_cols is not None:
num_rows = len(input_list) // num_cols + 1
output_list = []
for i in range(num_rows):
row = []
for j in range(num_cols):
if i * num_cols + j >= len(input_list):
break
row.append(input_list[i * num_cols + j])
output_list.append(row)
return output_list
|