File size: 22,103 Bytes
197d4ca |
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 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 |
# code in this file is adpated from rpmcruz/autoaugment
# https://github.com/rpmcruz/autoaugment/blob/master/transformations.py
import random
import PIL, PIL.ImageOps, PIL.ImageEnhance, PIL.ImageDraw
import numpy as np
import torch
from PIL import Image,ImageStat
#import cv2
from torchvision import transforms
# def tensor2img(tensor):
# transform = transforms.Compose()
def ShearX(img, v): # [-0.3, 0.3]
assert -0.3 <= v <= 0.3
if random.random() > 0.5:
v = -v
return img.transform(img.size, PIL.Image.AFFINE, (1, v, 0, 0, 1, 0))
def DoShearX(img, v): # [-0.3, 0.3]
return img.transform(img.size, PIL.Image.AFFINE, (1, v, 0, 0, 1, 0))
def ShearY(img, v): # [-0.3, 0.3]
assert -0.3 <= v <= 0.3
if random.random() > 0.5:
v = -v
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, v, 1, 0))
def DoShearY(img, v): # [-0.3, 0.3]
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, v, 1, 0))
def TranslateX(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
assert -0.45 <= v <= 0.45
if random.random() > 0.5:
v = -v
v = v * img.size[0]
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0))
def TranslateXabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
assert 0 <= v
if random.random() > 0.5:
v = -v
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0))
def DoTranslateXabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0))
def TranslateY(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
assert -0.45 <= v <= 0.45
if random.random() > 0.5:
v = -v
v = v * img.size[1]
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v))
def TranslateYabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
assert 0 <= v
if random.random() > 0.5:
v = -v
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v))
def DoTranslateYabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45]
return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v))
def Rotate(img, v): # [-30, 30]
assert -30 <= v <= 30
if random.random() > 0.5:
v = -v
return img.rotate(v)
def DoRotate(img, v): # [-30, 30]
return img.rotate(v)
def AutoContrast(img, v):
return PIL.ImageOps.autocontrast(img, v)
def DoAutoContrast(img, v):
return PIL.ImageOps.autocontrast(img, v)
def Invert(img, _):
return PIL.ImageOps.invert(img)
def DoInvert(img, _):
return PIL.ImageOps.invert(img)
def Equalize(img, _):
return PIL.ImageOps.equalize(img)
def DoEqualize(img, _):
return PIL.ImageOps.equalize(img)
def Flip(img, _): # not from the paper
return PIL.ImageOps.mirror(img)
def DoFlip(img, _): # not from the paper
return PIL.ImageOps.mirror(img)
def Solarize(img, v): # [0, 256]
assert 0 <= v <= 256
return PIL.ImageOps.solarize(img, v)
def DoSolarize(img, v): # [0, 256]
return PIL.ImageOps.solarize(img, v)
def SolarizeAdd(img, addition=0, threshold=128):
#img_np = np.array(img).astype(np.int)
img_np = np.array(img).astype(np.int32)
img_np = img_np + addition
img_np = np.clip(img_np, 0, 255)
img_np = img_np.astype(np.uint8)
img = Image.fromarray(img_np)
return PIL.ImageOps.solarize(img, threshold)
def DoSolarizeAdd(img, addition=0, threshold=128):
#img_np = np.array(img).astype(np.int)
img_np = np.array(img).astype(np.int32)
img_np = img_np + addition
img_np = np.clip(img_np, 0, 255)
img_np = img_np.astype(np.uint8)
img = Image.fromarray(img_np)
return PIL.ImageOps.solarize(img, threshold)
def Posterize(img, v): # [4, 8]
v = int(v)
v = max(1, v)
return PIL.ImageOps.posterize(img, v)
def DoPosterize(img, v): # [4, 8]
v = int(v)
v = max(1, v)
return PIL.ImageOps.posterize(img, v)
def Contrast(img, v): # [0.1,1.9]
assert 0.1 <= v <= 1.9
return PIL.ImageEnhance.Contrast(img).enhance(v)
def DoContrast(img, v):
return PIL.ImageEnhance.Contrast(img).enhance(v)
def Color(img, v): # [0.1,1.9]
assert 0.1 <= v <= 1.9
return PIL.ImageEnhance.Color(img).enhance(v)
def DoColor(img, v):
stat =ImageStat.Stat(img)
return PIL.ImageEnhance.Color(img).enhance(v)
def Brightness(img, v): # [0.1,1.9]
assert 0.1 <= v <= 1.9
return PIL.ImageEnhance.Brightness(img).enhance(v)
def DoBrightness(img, v): # obtain the brightness of image
return PIL.ImageEnhance.Brightness(img).enhance(v)
def Sharpness(img, v): # [0.1,1.9]
assert 0.1 <= v <= 1.9
return PIL.ImageEnhance.Sharpness(img).enhance(v)
def DoSharpness(img, v):
return PIL.ImageEnhance.Sharpness(img).enhance(v)
def Cutout(img, v): # [0, 60] => percentage: [0, 0.2]
assert 0.0 <= v <= 0.2
if v <= 0.:
return img
v = v * img.size[0]
return CutoutAbs(img, v)
def CutoutAbs(img, v): # [0, 60] => percentage: [0, 0.2]
# assert 0 <= v <= 20
if v < 0:
return img
w, h = img.size
x0 = np.random.uniform(w)
y0 = np.random.uniform(h)
x0 = int(max(0, x0 - v / 2.))
y0 = int(max(0, y0 - v / 2.))
x1 = min(w, x0 + v)
y1 = min(h, y0 + v)
xy = (x0, y0, x1, y1)
color = (125, 123, 114)
# color = (0, 0, 0)
img = img.copy()
PIL.ImageDraw.Draw(img).rectangle(xy, color)
return img
def DoCutoutAbs(img, v): # [0, 60] => percentage: [0, 0.2]
# assert 0 <= v <= 20
if v < 0:
return img
w, h = img.size
x0 = np.random.uniform(w)
y0 = np.random.uniform(h)
x0 = int(max(0, x0 - v / 2.))
y0 = int(max(0, y0 - v / 2.))
x1 = min(w, x0 + v)
y1 = min(h, y0 + v)
xy = (x0, y0, x1, y1)
color = (125, 123, 114)
# color = (0, 0, 0)
img = img.copy()
PIL.ImageDraw.Draw(img).rectangle(xy, color)
return img
def SamplePairing(imgs): # [0, 0.4]
def f(img1, v):
i = np.random.choice(len(imgs))
img2 = PIL.Image.fromarray(imgs[i])
return PIL.Image.blend(img1, img2, v)
return f
def Identity(img, v):
return img
def NoiseSalt(img, noise_rate):
"""增加椒盐噪声
args:
noise_rate (float): noise rate
"""
img_ = np.array(img).copy()
h, w, c = img_.shape
signal_pct = 1 - noise_rate
mask = np.random.choice((0, 1, 2), size=(h, w, 1), p=[signal_pct, noise_rate/2., noise_rate/2.])
mask = np.repeat(mask, c, axis=2)
img_[mask == 1] = 255 # 盐噪声
img_[mask == 2] = 0 # 椒噪声
return Image.fromarray(img_.astype('uint8'))
def DoNoiseSalt(img, noise_rate):
"""增加椒盐噪声
args:
noise_rate (float): noise rate
"""
img_ = np.array(img).copy()
h, w, c = img_.shape
signal_pct = 1 - noise_rate
mask = np.random.choice((0, 1, 2), size=(h, w, 1), p=[signal_pct, noise_rate/2., noise_rate/2.])
mask = np.repeat(mask, c, axis=2)
img_[mask == 1] = 255 # 盐噪声
img_[mask == 2] = 0 # 椒噪声
return Image.fromarray(img_.astype('uint8'))
def NoiseGaussian(img, sigma):
"""增加高斯噪声
传入:
img : 原图
mean : 均值默认0
sigma : 标准差
返回:
gaussian_out : 噪声处理后的图片
"""
# 将图片灰度标准化
img_ = np.array(img).copy()
img_ = img_ / 255.0
# 产生高斯 noise
noise = np.random.normal(0, sigma, img_.shape)
# 将噪声和图片叠加
gaussian_out = img_ + noise
# 将超过 1 的置 1,低于 0 的置 0
gaussian_out = np.clip(gaussian_out, 0, 1)
# 将图片灰度范围的恢复为 0-255
gaussian_out = np.uint8(gaussian_out*255)
# 将噪声范围搞为 0-255
# noise = np.uint8(noise*255)
return Image.fromarray(gaussian_out)
def DoNoiseGaussian(img, sigma):
"""增加高斯噪声
传入:
img : 原图
mean : 均值默认0
sigma : 标准差
返回:
gaussian_out : 噪声处理后的图片
"""
# 将图片灰度标准化
img_ = np.array(img).copy()
img_ = img_ / 255.0
# 产生高斯 noise
noise = np.random.normal(0, sigma, img_.shape)
# 将噪声和图片叠加
gaussian_out = img_ + noise
# 将超过 1 的置 1,低于 0 的置 0
gaussian_out = np.clip(gaussian_out, 0, 1)
# 将图片灰度范围的恢复为 0-255
gaussian_out = np.uint8(gaussian_out*255)
# 将噪声范围搞为 0-255
# noise = np.uint8(noise*255)
return Image.fromarray(gaussian_out)
# def factor_list(factor_num):
# l = [
# 'AutoContrast',
# 'Invert',
# 'Equalize',
# 'Solarize',
# 'SolarizeAdd',
# 'Posterize',
# 'Contrast',
# 'Color',
# 'Brightness',
# 'Sharpness',
# 'NoiseSalt',
# 'NoiseGaussian',
# ]
# return l[:factor_num]
# def causal_list(factor_num): # 16 oeprations and their ranges
# l = [
# (AutoContrast, 0, 100),
# (Invert, 0, 1),
# (Equalize, 0, 1),
# (Solarize, 0, 256),
# (SolarizeAdd, 0, 110),
# (Posterize, 0, 4),
# (Contrast, 0.1, 1.9),
# (Color, 0.1, 1.9),
# (Brightness, 0.1, 1.9),
# (Sharpness, 0.1, 1.9),
# (NoiseSalt,0.0,0.1),
# (NoiseGaussian,0.0,0.1),
# ]
# return l[:factor_num]
# def factor_list(factor_num):
# l = [
# 'ShearX',
# 'ShearY',
# 'Rotate',
# 'Flip'
# ]
# return l[:factor_num]
# def causal_list(factor_num): # 16 oeprations and their ranges
# l = [
# (ShearX, 0., 0.3),
# (ShearY, 0., 0.3),
# (Rotate, 0, 30),
# (Flip, 0, 1),
# ]
# return l[:factor_num]
def factor_list(factor_num):
l = [
'ShearX',
'ShearY',
'AutoContrast',
'Invert',
'Equalize',
'Solarize',
'SolarizeAdd',
'Posterize',
'Contrast',
'Color',
'Brightness',
'Sharpness',
'NoiseSalt',
'NoiseGaussian',
'Rotate',
'Flip'
]
return l[:factor_num]
def causal_list(factor_num): # 16 oeprations and their ranges
l = [
(ShearX, 0., 0.3),
(ShearY, 0., 0.3),
(AutoContrast, 0, 100),
(Invert, 0, 1),
(Equalize, 0, 1),
(Solarize, 0, 256),
(SolarizeAdd, 0, 110),
(Posterize, 0, 4),
(Contrast, 0.1, 1.9),
(Color, 0.1, 1.9),
(Brightness, 0.1, 1.9),
(Sharpness, 0.1, 1.9),
(NoiseSalt,0.0,0.1),
(NoiseGaussian,0.0,0.1),
(Rotate, 0, 30),
(Flip, 0, 1),
]
return l[:factor_num]
class Lighting(object):
"""Lighting noise(AlexNet - style PCA - based noise)"""
def __init__(self, alphastd, eigval, eigvec):
self.alphastd = alphastd
self.eigval = torch.Tensor(eigval)
self.eigvec = torch.Tensor(eigvec)
def __call__(self, img):
if self.alphastd == 0:
return img
alpha = img.new().resize_(3).normal_(0, self.alphastd)
rgb = self.eigvec.type_as(img).clone() \
.mul(alpha.view(1, 3).expand(3, 3)) \
.mul(self.eigval.view(1, 3).expand(3, 3)) \
.sum(1).squeeze()
return img.add(rgb.view(3, 1, 1).expand_as(img))
class CutoutDefault(object):
"""
Reference : https://github.com/quark0/darts/blob/master/cnn/utils.py
"""
def __init__(self, length):
self.length = length
def __call__(self, img):
h, w = img.size(1), img.size(2)
mask = np.ones((h, w), np.float32)
y = np.random.randint(h)
x = np.random.randint(w)
y1 = np.clip(y - self.length // 2, 0, h)
y2 = np.clip(y + self.length // 2, 0, h)
x1 = np.clip(x - self.length // 2, 0, w)
x2 = np.clip(x + self.length // 2, 0, w)
mask[y1: y2, x1: x2] = 0.
mask = torch.from_numpy(mask)
mask = mask.expand_as(img)
img *= mask
return img
class RandAugment_incausal:
def __init__(self, n, m, factor_num, randm=False, randn=False):
self.n = n
self.m = m # [0, 30]
self.causal_list = causal_list(factor_num)
print("---------------------------%d factors-----------------"%(len(self.causal_list)))
self.randm = randm
self.randn = randn
self.factor_num = factor_num
print("randm:",self.randm)
print("randn:",self.randn)
print("n:",self.n)
def __call__(self, img):
# print("%d factors-----------------"%(len(self.causal_list)))
if self.randn:
self.n = random.randint(1,self.factor_num)
ops = random.choices(self.causal_list, k=self.n)
if self.randm:
self.m = random.randint(0,30)
for op, minval, maxval in ops:
val = (float(self.m) / 30) * float(maxval - minval) + minval
# print("val:",val)
img = op(img, val)
return img
class RandAugment_all:
def __init__(self, m, factor_num, randm=False):
self.m = m # [0, 30]
self.causal_list = causal_list(factor_num)
print("---------------------------%d factors-----------------"%(len(self.causal_list)))
self.randm = randm
self.factor_num = factor_num
def __call__(self, img):
# print("%d factors-----------------"%(len(self.causal_list)))
factor_choice = np.random.randint(0,2,self.factor_num)
# ops = random.choices(self.causal_list, k=self.n)
if self.randm:
self.m = random.randint(0,30)
for index, (op, minval, maxval) in enumerate(self.causal_list):
if factor_choice[index] == 0:
continue
else:
val = (float(self.m) / 30) * float(maxval - minval) + minval
# print("val:",val)
img = op(img, val)
return img
class RandAugment_incausal_label:
def __init__(self, n, m, factor_num, randm=False):
self.n = n
self.m = m # [0, 30]
self.causal_list = causal_list(factor_num)
self.factor_num = factor_num
print("---------------------------%d factors-----------------"%(len(self.causal_list)))
self.randm = randm
print("randm:",self.randm)
def __call__(self, img):
# print("%d factors-----------------"%(len(self.causal_list)))
#op_labels = np.random.randint(0,self.factor_num-1,self.n)
op_labels = random.sample(range(0, self.factor_num), self.n)
ops = [li for index, li in enumerate(self.causal_list) if index in op_labels]
#ops = random.choices(self.causal_list, k=self.n)
# print(self.causal_list)
# print("op_labels:",op_labels)
# print("select_op:",ops)
if self.randm:
self.m = random.randint(0,30)
for op, minval, maxval in ops:
val = (float(self.m) / 30) * float(maxval - minval) + minval
# print("val:",val)
img = op(img, val)
return img, np.array(op_labels)
class FactualAugment_incausal:
def __init__(self, m, factor_num, randm=False):
self.m = m
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
self.randm = randm
print("randm:",self.randm)
def __call__(self, img):
# ops = random.choices(self.causal_list, k=1)
if self.randm:
self.m = random.randint(0,30)
for index, (op, minval, maxval) in enumerate(self.causal_list):
val = (float(self.m) / 30) * float(maxval - minval) + minval
if index == 0:
imgs = np.array(op(img, val))
else:
imgs = np.concatenate((imgs, op(img, val)),-1)
# print("imgs",imgs.shape)
return imgs
class CounterfactualAugment_incausal:
def __init__(self,factor_num):
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
def __call__(self, img):
# index = 0
# b, c, h, w = img.shape
# imgs = torch.zeros(b*self.factor_num, c, h, w)
# for b_ in range(32):
for index, (op, minval, maxval) in enumerate(self.causal_list):
op = eval('Do'+self.factor_list[index])
if index == 0:
imgs = np.array(op(img, maxval))
else:
imgs = np.concatenate((imgs, op(img, maxval)),-1)
# img = op(img, maxval)
# imgs[b_*factor_num+index] = op(img[b_], maxval)
return imgs
class MultiCounterfactualAugment_incausal:
def __init__(self, factor_num, stride):
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
self.stride = stride
def __call__(self, img):
# index = 0
# b, c, h, w = img.shape
# imgs = torch.zeros(b*self.factor_num, c, h, w)
# for b_ in range(32):
# 0,5,10,15,20,25,30
for index, (op, minval, maxval) in enumerate(self.causal_list):
op = eval('Do'+self.factor_list[index])
for i in range(0, 31, self.stride):
val = (float(i) / 30) * float(maxval - minval) + minval
if index == 0 and i == 0:
imgs = np.array(op(img, val))
else:
imgs = np.concatenate((imgs, op(img, val)),-1)
# img = op(img, maxval)
# imgs[b_*factor_num+index] = op(img[b_], maxval)
return imgs
class MultiCounterfactualAugment:
def __init__(self, factor_num, stride=5):
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
self.stride = stride
self.var_num = len(list(range(0, 31, self.stride)))
print("stride:",stride)
def __call__(self, img):
# index = 0
b, c, h, w = img.shape
imgs = torch.zeros(b*self.factor_num*self.var_num, c, h, w)
# for b_ in range(32):
# 0,5,10,15,20,25,30
# print(img.shape)
for b_ in range(b):
img0 = transforms.ToPILImage()(imgs[b_])
for index, (op, minval, maxval) in enumerate(self.causal_list):
op = eval('Do'+self.factor_list[index])
i_index = 0
for i in range(0, 31, self.stride):
val = (float(i) / 30) * float(maxval - minval) + minval
img1 = op(img0, val)
img1 = transforms.ToTensor()(img1)
#print(f'batch {b_} factor {index} stride {i} i_index {i_index} total {b_*self.factor_num*self.var_num+index*self.var_num+i_index}')
imgs[b_*self.factor_num*self.var_num+index*self.var_num+i_index] = img1
i_index = i_index + 1
# img = op(img, maxval)
# imgs[b_*factor_num+index] = op(img[b_], maxval)
return imgs
class FactualAugment:
def __init__(self, m, factor_num, randm=False):
self.m = m
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
self.randm = randm
print("randm:",randm)
def __call__(self, img):
index = 0
b, c, h, w = img.shape
imgs = torch.zeros(b*self.factor_num, c, h, w)
img = img.cpu()
for b_ in range(b):
imgs[b_*self.factor_num:(b_+1)*self.factor_num] = self.get_item(img[b_])
return imgs
def get_item(self, img):
index = 0
# print("input_dim:",img.shape)
c, h, w = img.shape
imgs = torch.zeros(self.factor_num, c, h, w)
# img = img.squeeze(0)
# print(img.shape)
img = transforms.ToPILImage()(img)
if self.randm:
self.m = random.randint(0,30)
for index, (op, minval, maxval) in enumerate(self.causal_list):
op = eval(self.factor_list[index])
val = (float(self.m) / 30) * float(maxval - minval) + minval
img1 = op(img, val)
img1 = transforms.ToTensor()(img1)
imgs[index] = img1
return imgs
class CounterfactualAugment:
def __init__(self,factor_num):
self.causal_list = causal_list(factor_num)
self.factor_list = factor_list(factor_num)
self.factor_num = factor_num
def __call__(self, img):
index = 0
b, c, h, w = img.shape
imgs = torch.zeros(b*self.factor_num, c, h, w)
img = img.cpu()
for b_ in range(b):
imgs[b_*self.factor_num:(b_+1)*self.factor_num] = self.get_item(img[b_])
return imgs
def get_item(self, img):
index = 0
c, h, w = img.shape
imgs = torch.ones(self.factor_num, c, h, w)
# img = img.squeeze(0)
img = transforms.ToPILImage()(img)
for index, (op, minval, maxval) in enumerate(self.causal_list):
op = eval('Do'+self.factor_list[index])
img1 = op(img, maxval)
# img1.save('test'+str(index)+'.png')
img1 = transforms.ToTensor()(img1)
imgs[index] = img1
return imgs
class Avg_statistic:
def __init__(self):
self.do_list = do_list()
self.statistic_num = len(self.do_list)
self.avg_val = np.zeros(self.statistic_num)
self.img_num = 0
def get_item(self,img):
# ops = self.statistic_list
do_index = 0
for op in self.do_list:
val=op(img)
self.avg_val[do_index] += val
self.img_num = self.img_num + 1
def compute_average(self):
self.avg_val = self.avg_val/self.img_num
def get_infor(self):
return self.avg_val, self.img_num
|