File size: 19,510 Bytes
7e3773e | 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 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | import numpy as np
import cv2
from functools import wraps
from matplotlib import pyplot as plt
import torch
MAX_VALUES_BY_DTYPE = {
np.dtype('uint8'): 255,
np.dtype('uint16'): 65535,
np.dtype('uint32'): 4294967295,
np.dtype('float32'): 1.0,
}
UNKNOWN_FLOW_THRESH = 1e7
SMALLFLOW = 0.0
LARGEFLOW = 1e8
def flow2rgb(flow_map, max_value):
if isinstance(flow_map,np.ndarray):
if flow_map.shape[2] == 2:
flow_map = flow_map.transpose(2,0, 1)
flow_map_np = flow_map
else:
if flow_map.shape[2] == 2:
# shape is HxWx2
flow_map = flow_map.permute(2, 0, 1)
flow_map_np = flow_map.detach().cpu().numpy()
_, h, w = flow_map_np.shape
flow_map_np[:,(flow_map_np[0] == 0) & (flow_map_np[1] == 0)] = float('nan')
rgb_map = np.ones((3,h,w)).astype(np.float32)
if max_value is not None:
normalized_flow_map = flow_map_np / max_value
else:
normalized_flow_map = flow_map_np / (np.abs(flow_map_np).max())
rgb_map[0] += normalized_flow_map[0]
rgb_map[1] -= 0.5*(normalized_flow_map[0] + normalized_flow_map[1])
rgb_map[2] += normalized_flow_map[1]
return rgb_map.clip(0,1)
def flow_to_image(flow, maxrad=None):
"""
Convert flow into middlebury color code image
:param flow: optical flow map
:return: optical flow image in middlebury color
"""
h,w, _ = flow.shape
u = flow[:, :, 0]
v = flow[:, :, 1]
maxu = -999.
maxv = -999.
minu = 999.
minv = 999.
idxUnknow = (abs(u) > UNKNOWN_FLOW_THRESH) | (abs(v) > UNKNOWN_FLOW_THRESH)
u[idxUnknow] = 0
v[idxUnknow] = 0
if maxrad is None:
rad = np.sqrt(u ** 2 + v ** 2)
maxrad = max(-1, np.max(rad))
#print("max flow: %.4f\nflow range:\nu = %.3f .. %.3f\nv = %.3f .. %.3f" % (maxrad, minu,maxu, minv, maxv))
u = u/(maxrad + np.finfo(float).eps)
v = v/(maxrad + np.finfo(float).eps)
img = compute_color(u, v)
idx = np.repeat(idxUnknow[:, :, np.newaxis], 3, axis=2)
img[idx] = 0
valid = np.ones((h,w), np.uint8)
valid[np.logical_and(u == 0 , v == 0)] = 0
return np.uint8(img)*np.expand_dims(valid, axis=2)
def show_flow(flow):
"""
visualize optical flow map using matplotlib
:param filename: optical flow file
:return: None
"""
img = flow_to_image(flow)
plt.imshow(img)
plt.show()
def visualize_flow(flow, mode='Y'):
"""
this function visualize the input flow
:param flow: input flow in array
:param mode: choose which color mode to visualize the flow (Y: Ccbcr, RGB: RGB color)
:return: None
"""
if mode == 'Y':
# Ccbcr color wheel
img = flow_to_image(flow)
plt.imshow(img)
plt.show()
elif mode == 'RGB':
(h, w) = flow.shape[0:2]
du = flow[:, :, 0]
dv = flow[:, :, 1]
valid = flow[:, :, 2]
max_flow = max(np.max(du), np.max(dv))
img = np.zeros((h, w, 3), dtype=np.float64)
# angle layer
img[:, :, 0] = np.arctan2(dv, du) / (2 * np.pi)
# magnitude layer, normalized to 1
img[:, :, 1] = np.sqrt(du * du + dv * dv) * 8 / max_flow
# phase layer
img[:, :, 2] = 8 - img[:, :, 1]
# clip to [0,1]
small_idx = img[:, :, 0:3] < 0
large_idx = img[:, :, 0:3] > 1
img[small_idx] = 0
img[large_idx] = 1
# convert to rgb
img = cl.hsv_to_rgb(img)
# remove invalid point
img[:, :, 0] = img[:, :, 0] * valid
img[:, :, 1] = img[:, :, 1] * valid
img[:, :, 2] = img[:, :, 2] * valid
# show
plt.imshow(img)
plt.show()
def compute_color(u, v):
"""
compute optical flow color map
:param u: optical flow horizontal map
:param v: optical flow vertical map
:return: optical flow in color code
"""
[h, w] = u.shape
img = np.zeros([h, w, 3])
nanIdx = np.isnan(u) | np.isnan(v)
u[nanIdx] = 0
v[nanIdx] = 0
colorwheel = make_color_wheel()
ncols = np.size(colorwheel, 0)
rad = np.sqrt(u**2+v**2)
a = np.arctan2(-v, -u) / np.pi
fk = (a+1) / 2 * (ncols - 1) + 1
k0 = np.floor(fk).astype(int)
k1 = k0 + 1
k1[k1 == ncols+1] = 1
f = fk - k0
for i in range(0, np.size(colorwheel,1)):
tmp = colorwheel[:, i]
col0 = tmp[k0-1] / 255
col1 = tmp[k1-1] / 255
col = (1-f) * col0 + f * col1
idx = rad <= 1
col[idx] = 1-rad[idx]*(1-col[idx])
notidx = np.logical_not(idx)
col[notidx] *= 0.75
img[:, :, i] = np.uint8(np.floor(255 * col*(1-nanIdx)))
return img
def make_color_wheel():
"""
Generate color wheel according Middlebury color code
:return: Color wheel
"""
RY = 15
YG = 6
GC = 4
CB = 11
BM = 13
MR = 6
ncols = RY + YG + GC + CB + BM + MR
colorwheel = np.zeros([ncols, 3])
col = 0
# RY
colorwheel[0:RY, 0] = 255
colorwheel[0:RY, 1] = np.transpose(np.floor(255*np.arange(0, RY) / RY))
col += RY
# YG
colorwheel[col:col+YG, 0] = 255 - np.transpose(np.floor(255*np.arange(0, YG) / YG))
colorwheel[col:col+YG, 1] = 255
col += YG
# GC
colorwheel[col:col+GC, 1] = 255
colorwheel[col:col+GC, 2] = np.transpose(np.floor(255*np.arange(0, GC) / GC))
col += GC
# CB
colorwheel[col:col+CB, 1] = 255 - np.transpose(np.floor(255*np.arange(0, CB) / CB))
colorwheel[col:col+CB, 2] = 255
col += CB
# BM
colorwheel[col:col+BM, 2] = 255
colorwheel[col:col+BM, 0] = np.transpose(np.floor(255*np.arange(0, BM) / BM))
col += + BM
# MR
colorwheel[col:col+MR, 2] = 255 - np.transpose(np.floor(255 * np.arange(0, MR) / MR))
colorwheel[col:col+MR, 0] = 255
return colorwheel
def show_flow(disp_x, disp_y):
norm_flow=np.sqrt(np.power(disp_x,2) + np.power(disp_y,2) )
return norm_flow
def diff_neighboring_OF(disp_x, disp_y):
diff=np.zeros((disp_x.shape[0], disp_x.shape[1],5), dtype=np.float32)
print(disp_x.shape[0])
for y in range(2, disp_x.shape[0]-2):
for x in range(2, disp_x.shape[1]-2):
diff[y, x, 0] = np.sqrt((disp_x[y, x] - disp_x[y+1, x])**2 + (disp_y[y,x]-disp_y[y+1, x])**2)
diff[y, x, 1] = np.sqrt((disp_x[y, x] - disp_x[y - 1, x]) ** 2 + (disp_y[y, x] - disp_y[y - 1, x]) ** 2 )
diff[y, x, 2] = np.sqrt((disp_x[y, x] - disp_x[y, x+1]) ** 2 + (disp_y[y, x] - disp_y[y, x+1]) ** 2 )
diff[y, x, 3] = np.sqrt((disp_x[y, x] - disp_x[y, x-1]) ** 2 + (disp_y[y, x] - disp_y[y, x-1]) ** 2 )
diff[y,x,4]=1/4*(diff[y, x, 1]+diff[y, x, 2]+diff[y, x, 3]+diff[y, x, 0])
return diff
def preserve_shape(func):
"""Preserve shape of the image."""
@wraps(func)
def wrapped_function(img, *args, **kwargs):
shape = img.shape
result = func(img, *args, **kwargs)
result = result.reshape(shape)
return result
return wrapped_function
def preserve_channel_dim(func):
"""Preserve dummy channel dim."""
@wraps(func)
def wrapped_function(img, *args, **kwargs):
shape = img.shape
result = func(img, *args, **kwargs)
if len(shape) == 3 and shape[-1] == 1 and len(result.shape) == 2:
result = np.expand_dims(result, axis=-1)
return result
return wrapped_function
def center_crop(img, size):
"""
Get the center crop of the input image
Args:
img: input image [BxCxHxW]
size: size of the center crop (tuple)
Output:
img_pad: center crop
x, y: coordinates of the crop
"""
if not isinstance(size, tuple):
size = (size, size)
img = img.copy()
#w, h = img.shape[1::-1]
w, h=img.shape[:2]
pad_w = 0
pad_h = 0
if w < size[0]:
pad_w = np.uint16((size[0] - w) / 2)
if h < size[1]:
pad_h = np.uint16((size[1] - h) / 2)
img_pad = cv2.copyMakeBorder(img,
pad_h,
pad_h,
pad_w,
pad_w,
cv2.BORDER_CONSTANT,
value=[0, 0, 0])
w, h = img_pad.shape[1::-1]
x1 = w // 2 - size[0] // 2
y1 = h // 2 - size[1] // 2
img_pad = img_pad[y1:y1 + size[1], x1:x1 + size[0], :]
return img_pad, x1, y1
def crop_images_and_rescale_OF(I, I_prime, map_x, map_y, size):
I_cropped, x1, y1=center_crop(I, size)
I_prime_cropped, x1, y1=center_crop(I_prime, size)
map_x=map_x-x1 # warped image starts at a new index x1 in horizontal direction
map_y=map_y-y1
map_x_modified=map_x[y1:y1 + size[1], x1:x1 + size[0]]
map_y_modified = map_y[y1:y1 + size[1], x1:x1 + size[0]]
return I_cropped, I_prime_cropped, map_x_modified, map_y_modified
@preserve_channel_dim
def pad(img, min_height, min_width, border_mode=cv2.BORDER_REFLECT_101, value=None):
height, width = img.shape[:2]
if height < min_height:
h_pad_top = int((min_height - height) / 2.0)
h_pad_bottom = min_height - height - h_pad_top
else:
h_pad_top = 0
h_pad_bottom = 0
if width < min_width:
w_pad_left = int((min_width - width) / 2.0)
w_pad_right = min_width - width - w_pad_left
else:
w_pad_left = 0
w_pad_right = 0
img = pad_with_params(img, h_pad_top, h_pad_bottom, w_pad_left, w_pad_right, border_mode, value)
assert img.shape[0] == max(min_height, height)
assert img.shape[1] == max(min_width, width)
return img
@preserve_channel_dim
def pad_with_params(img, h_pad_top, h_pad_bottom, w_pad_left, w_pad_right, border_mode=cv2.BORDER_REFLECT_101,
value=None):
img = cv2.copyMakeBorder(img, h_pad_top, h_pad_bottom, w_pad_left, w_pad_right, border_mode, value=value)
return img
def crop(img, x_min, y_min, x_max, y_max):
height, width = img.shape[:2]
if x_max <= x_min or y_max <= y_min:
raise ValueError(
'We should have x_min < x_max and y_min < y_max. But we got'
' (x_min = {x_min}, y_min = {y_min}, x_max = {x_max}, y_max = {y_max})'.format(
x_min=x_min,
x_max=x_max,
y_min=y_min,
y_max=y_max
)
)
if x_min < 0 or x_max > width or y_min < 0 or y_max > height:
raise ValueError(
'Values for crop should be non negative and equal or smaller than image sizes'
'(x_min = {x_min}, y_min = {y_min}, x_max = {x_max}, y_max = {y_max}'
'height = {height}, width = {width})'.format(
x_min=x_min,
x_max=x_max,
y_min=y_min,
y_max=y_max,
height=height,
width=width
)
)
return img[y_min:y_max, x_min:x_max]
def get_center_crop_coords(height, width, crop_height, crop_width):
y1 = (height - crop_height) // 2
y2 = y1 + crop_height
x1 = (width - crop_width) // 2
x2 = x1 + crop_width
return x1, y1, x2, y2
def center_crop(img, crop_height, crop_width):
height, width = img.shape[:2]
if height < crop_height or width < crop_width:
raise ValueError(
'Requested crop size ({crop_height}, {crop_width}) is '
'larger than the image size ({height}, {width})'.format(
crop_height=crop_height,
crop_width=crop_width,
height=height,
width=width,
)
)
x1, y1, x2, y2 = get_center_crop_coords(height, width, crop_height, crop_width)
img = img[y1:y2, x1:x2]
return img
def get_random_crop_coords(height, width, crop_height, crop_width, h_start, w_start):
y1 = int((height - crop_height) * h_start)
y2 = y1 + crop_height
x1 = int((width - crop_width) * w_start)
x2 = x1 + crop_width
return x1, y1, x2, y2
def random_crop(img, crop_height, crop_width, h_start, w_start):
height, width = img.shape[:2]
if height < crop_height or width < crop_width:
raise ValueError(
'Requested crop size ({crop_height}, {crop_width}) is '
'larger than the image size ({height}, {width})'.format(
crop_height=crop_height,
crop_width=crop_width,
height=height,
width=width,
)
)
x1, y1, x2, y2 = get_random_crop_coords(height, width, crop_height, crop_width, h_start, w_start)
img = img[y1:y2, x1:x2]
return img
def clamping_crop(img, x_min, y_min, x_max, y_max):
h, w = img.shape[:2]
if x_min < 0:
x_min = 0
if y_min < 0:
y_min = 0
if y_max >= h:
y_max = h - 1
if x_max >= w:
x_max = w - 1
return img[int(y_min):int(y_max), int(x_min):int(x_max)]
def convert_flow_to_mapping(flow, output_channel_first=True):
if not isinstance(flow, np.ndarray):
# torch tensor
if len(flow.shape) == 4:
if flow.shape[1] != 2:
# size is BxHxWx2
flow = flow.permute(0, 3, 1, 2)
B, C, H, W = flow.size()
xx = torch.arange(0, W).view(1, -1).repeat(H, 1)
yy = torch.arange(0, H).view(-1, 1).repeat(1, W)
xx = xx.view(1, 1, H, W).repeat(B, 1, 1, 1)
yy = yy.view(1, 1, H, W).repeat(B, 1, 1, 1)
grid = torch.cat((xx, yy), 1).float()
if flow.is_cuda:
grid = grid.cuda()
mapping = flow + grid # here also channel first
if not output_channel_first:
mapping = mapping.permute(0,2,3,1)
else:
if flow.shape[0] != 2:
# size is HxWx2
flow = flow.permute(2, 0, 1)
C, H, W = flow.size()
xx = torch.arange(0, W).view(1, -1).repeat(H, 1)
yy = torch.arange(0, H).view(-1, 1).repeat(1, W)
xx = xx.view(1, H, W)
yy = yy.view(1, H, W)
grid = torch.cat((xx, yy), 0).float() # attention, concat axis=0 here
if flow.is_cuda:
grid = grid.cuda()
mapping = flow + grid # here also channel first
if not output_channel_first:
mapping = mapping.permute(1,2,0).float()
return mapping.float()
else:
# here numpy arrays
if len(flow.shape) == 4:
if flow.shape[3] != 2:
# size is Bx2xHxW
flow = flow.transpose(0, 2, 3, 1)
# BxHxWx2
b, h_scale, w_scale = flow.shape[:3]
mapping = np.copy(flow)
X, Y = np.meshgrid(np.linspace(0, w_scale - 1, w_scale),
np.linspace(0, h_scale - 1, h_scale))
for i in range(b):
mapping[i, :, :, 0] = flow[i, :, :, 0] + X
mapping[i, :, :, 1] = flow[i, :, :, 1] + Y
if output_channel_first:
mapping = mapping.transpose(0,3,1,2)
else:
if flow.shape[0] == 2:
# size is 2xHxW
flow = flow.transpose(1,2,0)
# HxWx2
h_scale, w_scale = flow.shape[:2]
mapping = np.copy(flow)
X, Y = np.meshgrid(np.linspace(0, w_scale - 1, w_scale),
np.linspace(0, h_scale - 1, h_scale))
mapping[:, :, 0] = flow[:, :, 0] + X
mapping[:, :, 1] = flow[:, :, 1] + Y
if output_channel_first:
mapping = mapping.transpose(2, 0, 1)
return mapping.astype(np.float32)
def remap_using_flow_fields(image, disp_x, disp_y, interpolation=cv2.INTER_LINEAR,
border_mode=cv2.BORDER_CONSTANT):
"""
Opencv remap
map_x contains the index of the matching horizontal position of each pixel [i,j] while map_y contains the
index of the matching vertical position of each pixel [i,j]
All arrays are numpy
args:
image: image to remap, HxWxC
disp_x: displacement in the horizontal direction to apply to each pixel. must be float32. HxW
disp_y: displacement in the vertical direction to apply to each pixel. must be float32. HxW
interpolation
border_mode
output:
remapped image. HxWxC
"""
h_scale, w_scale=disp_x.shape[:2]
# estimate the grid
X, Y = np.meshgrid(np.linspace(0, w_scale - 1, w_scale),
np.linspace(0, h_scale - 1, h_scale))
map_x = (X+disp_x).astype(np.float32)
map_y = (Y+disp_y).astype(np.float32)
remapped_image = cv2.remap(image, map_x, map_y, interpolation=interpolation, borderMode=border_mode)
return remapped_image
def _pascal_color_map(N=256, normalized=False):
"""
Python implementation of the color map function for the PASCAL VOC data set.
Official Matlab version can be found in the PASCAL VOC devkit
http://host.robots.ox.ac.uk/pascal/VOC/voc2012/index.html#devkit
"""
def bitget(byteval, idx):
return (byteval & (1 << idx)) != 0
dtype = 'float32' if normalized else 'uint8'
cmap = np.zeros((N, 3), dtype=dtype)
for i in range(N):
r = g = b = 0
c = i
for j in range(8):
r = r | (bitget(c, 0) << 7 - j)
g = g | (bitget(c, 1) << 7 - j)
b = b | (bitget(c, 2) << 7 - j)
c = c >> 3
cmap[i] = np.array([r, g, b])
cmap = cmap / 255 if normalized else cmap
return cmap
def overlay_with_colored_mask(im, mask, alpha=0.5):
fg = im * alpha + (1 - alpha) * mask
return fg
def overlay_semantic_mask(im, ann, alpha=0.5, mask=None, colors=None, color=[255, 218, 185], contour_thickness=1):
"""
example usage:
image_overlaid = overlay_semantic_mask(im.astype(np.uint8), 255 - mask.astype(np.uint8) * 255, color=[255, 102, 51])
"""
im, ann = np.asarray(im, dtype=np.uint8), np.asarray(ann, dtype=int)
if im.shape[:-1] != ann.shape:
raise ValueError('First two dimensions of `im` and `ann` must match')
if im.shape[-1] != 3:
raise ValueError('im must have three channels at the 3 dimension')
colors = colors or _pascal_color_map()
colors = np.asarray(colors, dtype=np.uint8)
colors[-1, :] = color
if mask is None:
mask = colors[ann]
fg = im * alpha + (1 - alpha) * mask
img = im.copy()
img[ann > 0] = fg[ann > 0] # where the mask is zero (where object is), shoudlnt be any color
if contour_thickness: # pragma: no cover
import cv2
for obj_id in np.unique(ann[ann > 0]):
contours = cv2.findContours((ann == obj_id).astype(
np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)[-2:]
cv2.drawContours(img, contours[0], -1, color,
contour_thickness)
return img
def replace_area(im, ann, replace, alpha=0.5, color=None, thickness=1):
img_warped_overlay_on_target = np.copy(replace)
img_warped_overlay_on_target[ann > 0] = im[ann > 0]
for obj_id in np.unique(ann[ann > 0]):
contours = cv2.findContours((ann == obj_id).astype(
np.uint8), cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)[-2:]
cv2.drawContours(img_warped_overlay_on_target, contours[0], -1, color,
thickness)
return img_warped_overlay_on_target |