1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

fix webtoon perf_counters

This commit is contained in:
Alex Xu
2025-10-16 22:04:24 -07:00
parent 4c5ec95a9b
commit e2b98db1a2

View File

@@ -23,7 +23,6 @@ import sys
from argparse import ArgumentParser
from shutil import rmtree
from multiprocessing import Pool
from time import perf_counter
from PIL import Image, ImageChops, ImageOps, ImageDraw, ImageFilter
from PIL.Image import Dither
from .shared import dot_clean, getImageFileName, walkLevel, walkSort, sanitizeTrace
@@ -103,15 +102,9 @@ def splitImage(work):
Image.warnings.simplefilter('error', Image.DecompressionBombWarning)
Image.MAX_IMAGE_PIXELS = 1000000000
imgOrg = Image.open(filePath).convert('RGB')
start = perf_counter()
imgEdges = Image.open(filePath).convert('L').filter(ImageFilter.FIND_EDGES)
end = perf_counter()
print(f"webtoon: imgEdges {end - start} sec")
start = perf_counter()
# the threshold of 8 is conservative. 0-6 are definitely not edges
imgProcess = imgEdges.point(lambda p: 255 if p > 8 else 0).convert('1', dither=Dither.NONE)
end = perf_counter()
print(f"webtoon: imgProcess {end - start} sec")
widthImg, heightImg = imgOrg.size
if heightImg > opt.height: