File size: 7,376 Bytes
8135b6a |
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 |
import os
import json
import copy
import re
import time
import cv2 as cv
import numpy as np
from lib.html import HTML
class Debug:
colours = {
'white': (255, 255, 255),
'red': (0, 0, 255),
'green': (0, 255, 0),
'blue': (255, 0, 0),
'lightblue': (200, 200, 0),
'lightpurple': (200, 0, 200),
'yellow': (0, 200, 200),
'gray': (150, 150, 150),
}
# white, red and green are used to display main panels
subpanel_colours = list(colours.values())[3:]
debug = False
contour_size = None
steps = []
images = {}
time = time.time_ns()
base_img = img = None
@staticmethod
def set_base_img(img):
if not Debug.debug:
return
Debug.base_img = img
Debug.img = np.copy(img)
@staticmethod
def add_step(name, infos):
if not Debug.debug:
return
elapsed = Debug.show_time(f"{name} ({len(infos['panels'])} panels)")
Debug.steps.append({
'name': name,
'elapsed_since_last_step': elapsed,
'infos': copy.deepcopy(infos),
})
@staticmethod
def show_time(name):
if not Debug.debug:
return
Debug.prev_time = Debug.time
Debug.time = time.time_ns()
elapsed = Debug.time - Debug.prev_time
print(f"{name} − {elapsed/pow(10,6):.0f}ms")
return elapsed
imgID = 0
@staticmethod
def add_image(label, img = None):
if not Debug.debug:
return
clean_filename = re.sub(r'\W', '-', label)
filename = f"{Debug.imgID}-{clean_filename}.jpg"
Debug.imgID += 1
cv.imwrite(os.path.join('tests/results', filename), Debug.img if img is None else img)
# reinit image so we see only specific steps' contours/lines/dots
Debug.img = np.copy(Debug.base_img)
currstep = len(Debug.steps) - 1
if currstep not in Debug.images:
Debug.images[currstep] = []
Debug.images[currstep].append({'filename': filename, 'label': label})
@staticmethod
def html(images_dir, reldir):
html = ''
html += HTML.header(title = 'Debugging - Kumiko processing steps', reldir = reldir)
for i in range(len(Debug.steps) - 1):
j = i + 1
# Display debug images
if i in Debug.images:
html += HTML.imgbox(Debug.images[i])
# Display panels diffs
files_diff = Debug.get_files_diff(images_dir, [Debug.steps[i]['infos']], [Debug.steps[j]['infos']])
step_name = str(i + 1) + '. ' + Debug.steps[j]['name']
if len(files_diff) == 0:
html += f"<h2>{step_name} - no change</h2>"
for _, diffs in files_diff.items():
html += HTML.side_by_side_panels(
step_name,
f"took {Debug.steps[j]['elapsed_since_last_step']/pow(10,9):.2f} seconds",
diffs['jsons'],
f"BEFORE - {len(diffs['jsons'][0][0]['panels'])} panels",
f"AFTER - {len(diffs['jsons'][1][0]['panels'])} panels",
images_dir = diffs['images_dir'],
known_panels = diffs['known_panels'],
diff_numbering_panels = diffs['diff_numbering_panels'],
)
html += HTML.footer
return html
@staticmethod
def get_files_diff(file_or_dir, json1, json2):
from lib.panel import Panel
files_diff = {}
for p in range(len(json1)): # for each page
# check both images' filename and size, should be the same
if os.path.basename(json1[p]['filename']) != os.path.basename(json2[p]['filename']):
print('error, filenames are not the same', json1[p]['filename'], json2[p]['filename'])
continue
if json1[p]['size'] != json2[p]['size']:
print('error, image sizes are not the same', json1[p]['size'], json2[p]['size'])
continue
panels_v1 = list(map(lambda p: Panel(None, p), json1[p]['panels']))
panels_v2 = list(map(lambda p: Panel(None, p), json2[p]['panels']))
known_panels = [[], []]
j = -1
for p1 in panels_v1:
j += 1
if p1 in panels_v2:
known_panels[0].append(j)
j = -1
for p2 in panels_v2:
j += 1
if p2 in panels_v1:
known_panels[1].append(j)
images_dir = 'urls'
if file_or_dir != 'urls':
images_dir = file_or_dir if os.path.isdir(file_or_dir) else os.path.dirname(file_or_dir)
images_dir = os.path.relpath(images_dir, 'tests/results') + '/'
diff_numbering = []
diff_panels = False
if len(known_panels[0]) != len(panels_v1) or len(known_panels[1]) != len(panels_v2):
diff_panels = True
else:
for i in range(len(panels_v1)):
if panels_v1[i] != panels_v2[i]:
diff_numbering.append(i + 1)
if diff_panels or len(diff_numbering) > 0:
files_diff[json1[p]['filename']] = {
'jsons': [[json1[p]], [json2[p]]],
'images_dir': images_dir,
'known_panels': [json.dumps(known_panels[0]),
json.dumps(known_panels[1])],
'diff_numbering_panels': diff_numbering,
}
return files_diff
@staticmethod
def draw_contours(contours, colour = 'auto', with_hull = False):
if not Debug.debug:
return
if Debug.contour_size is None:
raise Exception("Fatal error, Debug.contour_size has not been defined")
for i in range(len(contours)):
if colour == 'auto':
colour = Debug.subpanel_colours[i % len(Debug.subpanel_colours)]
cv.drawContours(Debug.img, [contours[i]], 0, colour, Debug.contour_size)
if with_hull:
hull = cv.convexHull(contours[i])
cv.drawContours(Debug.img, [hull], 0, Debug.colours['yellow'], Debug.contour_size)
@staticmethod
def draw_segments(segments, colour, size = None):
if not Debug.debug:
return
if size is None:
size = Debug.contour_size
for segment in segments:
Debug.draw_line(segment.a, segment.b, colour, size = size)
@staticmethod
def draw_line(dot1, dot2, colour, size = None):
if not Debug.debug:
return
if Debug.contour_size is None:
raise Exception("Fatal error, Debug.contour_size has not been defined")
if size is None:
size = Debug.contour_size
cv.line(Debug.img, (dot1[0], dot1[1]), (dot2[0], dot2[1]), colour, size, cv.LINE_AA)
@staticmethod
def draw_dots(dots, colour):
if not Debug.debug:
return
for dot in dots:
Debug.draw_dot(dot[0], dot[1], colour)
@staticmethod
def draw_nearby_dots(polygon, nearby_dots):
if not Debug.debug:
return
for dots in nearby_dots:
dot1 = polygon[dots[0]][0]
dot2 = polygon[dots[1]][0]
Debug.draw_dot(dot1[0], dot1[1], Debug.colours['lightpurple'])
Debug.draw_dot(dot2[0], dot2[1], Debug.colours['lightpurple'])
Debug.draw_line(dot1, dot2, Debug.colours['lightpurple'], size = 1)
@staticmethod
def draw_dot(x, y, colour):
if not Debug.debug:
return
if Debug.contour_size is None:
raise Exception("Fatal error, Debug.contour_size has not been defined")
cv.circle(Debug.img, (x, y), Debug.contour_size * 2, colour, -1)
@staticmethod
def draw_panels(panels, colour):
if not Debug.debug:
return
if Debug.contour_size is None:
raise Exception("Fatal error, Debug.contour_size has not been defined")
for p in panels:
cv.rectangle(Debug.img, (p.x, p.y), (p.r, p.b), colour, Debug.contour_size)
# + draw inner white border
for p in panels:
cv.rectangle(
Debug.img, (p.x + Debug.contour_size, p.y + Debug.contour_size),
(p.r - Debug.contour_size, p.b - Debug.contour_size), Debug.colours['white'],
int(Debug.contour_size / 2)
)
@staticmethod
def draw_polygon(polygon):
if not Debug.debug:
return
for i in range(len(polygon)):
j = (i + 1) % len(polygon)
dot1 = polygon[i][0]
dot2 = polygon[j][0]
Debug.draw_line(dot1, dot2, Debug.colours['red'], size = 2)
Debug.draw_dot(dot1[0], dot1[1], Debug.colours['gray'])
|