Keiser41 commited on
Commit
0004858
1 Parent(s): 0caed3c

Update pintar.py

Browse files
Files changed (1) hide show
  1. pintar.py +18 -41
pintar.py CHANGED
@@ -1,10 +1,9 @@
1
  import os
 
2
  import numpy as np
3
  from skimage import color, io
4
-
5
  import torch
6
  import torch.nn.functional as F
7
-
8
  from PIL import Image
9
  from models import ColorEncoder, ColorUNet
10
  from extractor.manga_panel_extractor import PanelExtractor
@@ -21,7 +20,7 @@ def Lab2RGB_out(img_lab):
21
  img_ab = img_lab[:,1:,:,:]
22
  img_l = img_l + 50
23
  pred_lab = torch.cat((img_l, img_ab), 1)[0,...].numpy()
24
- out = (np.clip(color.lab2rgb(pred_lab.transpose(1, 2, 0)), 0, 1)* 255).astype("uint8")
25
  return out
26
 
27
  def RGB2Lab(inputs):
@@ -35,11 +34,11 @@ def Normalize(inputs):
35
  return lab.astype('float32')
36
 
37
  def numpy2tensor(inputs):
38
- out = torch.from_numpy(inputs.transpose(2,0,1))
39
  return out
40
 
41
  def tensor2numpy(inputs):
42
- out = inputs[0,...].detach().cpu().numpy().transpose(1,2,0)
43
  return out
44
 
45
  def preprocessing(inputs):
@@ -50,41 +49,22 @@ def preprocessing(inputs):
50
  return img.unsqueeze(0), img_lab.unsqueeze(0)
51
 
52
  if __name__ == "__main__":
 
 
 
 
 
 
53
  device = "cuda"
54
 
55
- ckpt_path = 'experiments/Color2Manga_gray/074000_gray.pt'
56
  test_dir_path = 'test_datasets/gray_test'
57
  no_extractor = False
58
- ref_img_path = 'path_to_your_reference_image.jpg' # Especifica la ruta de tu imagen de referencia aquí
59
-
60
- ckpt = torch.load(ckpt_path, map_location=lambda storage, loc: storage)
61
 
62
- colorEncoder = ColorEncoder().to(device)
63
- colorEncoder.load_state_dict(ckpt["colorEncoder"])
64
- colorEncoder.eval()
65
-
66
- colorUNet = ColorUNet().to(device)
67
- colorUNet.load_state_dict(ckpt["colorUNet"])
68
- colorUNet.eval()
69
-
70
- img1 = Image.open(ref_img_path).convert("RGB")
71
- width, height = img1.size
72
-
73
- img1, img1_lab = preprocessing(img1)
74
- img1 = img1.to(device)
75
- img1_lab = img1_lab.to(device)
76
 
77
  while True:
78
- print(f'make sure manga images are under this path: {test_dir_path}')
79
- img_path = input("please input the name of image needed to be colorized (with file extension): ")
80
- img_path = os.path.join(test_dir_path, img_path)
81
- img_name = os.path.basename(img_path)
82
- img_name = os.path.splitext(img_name)[0]
83
-
84
- img2 = Image.open(img_path).convert("RGB")
85
- img2, img2_lab = preprocessing(img2)
86
- img2 = img2.to(device)
87
- img2_lab = img2_lab.to(device)
88
 
89
  with torch.no_grad():
90
  img2_resize = F.interpolate(img2 / 255., size=(256, 256), mode='bilinear', recompute_scale_factor=False, align_corners=False)
@@ -93,20 +73,17 @@ if __name__ == "__main__":
93
  color_vector = colorEncoder(img2_resize)
94
 
95
  fake_ab = colorUNet((img1_L_resize, color_vector))
96
- fake_ab = F.interpolate(fake_ab*110, size=(height, width), mode='bilinear', recompute_scale_factor=False, align_corners=False)
97
 
98
  fake_img = torch.cat((img1_lab[:,:1,:,:], fake_ab), 1)
99
  fake_img = Lab2RGB_out(fake_img)
100
 
101
- out_folder = os.path.dirname(img_path)
102
- out_name = os.path.basename(img_path)
103
- out_name = os.path.splitext(out_name)[0]
104
- out_img_path = os.path.join(out_folder, 'color', f'{out_name}_color.png')
105
 
106
  # show image
107
  Image.fromarray(fake_img).show()
108
  # save image
109
- folder_path = os.path.join(out_folder, 'color')
110
- if not os.path.exists(folder_path):
111
- os.mkdir(folder_path)
112
  io.imsave(out_img_path, fake_img)
 
1
  import os
2
+ import argparse
3
  import numpy as np
4
  from skimage import color, io
 
5
  import torch
6
  import torch.nn.functional as F
 
7
  from PIL import Image
8
  from models import ColorEncoder, ColorUNet
9
  from extractor.manga_panel_extractor import PanelExtractor
 
20
  img_ab = img_lab[:,1:,:,:]
21
  img_l = img_l + 50
22
  pred_lab = torch.cat((img_l, img_ab), 1)[0,...].numpy()
23
+ out = (np.clip(color.lab2rgb(pred_lab.transpose(1, 2, 0)), 0, 1) * 255).astype("uint8")
24
  return out
25
 
26
  def RGB2Lab(inputs):
 
34
  return lab.astype('float32')
35
 
36
  def numpy2tensor(inputs):
37
+ out = torch.from_numpy(inputs.transpose(2, 0, 1))
38
  return out
39
 
40
  def tensor2numpy(inputs):
41
+ out = inputs[0, ...].detach().cpu().numpy().transpose(1, 2, 0)
42
  return out
43
 
44
  def preprocessing(inputs):
 
49
  return img.unsqueeze(0), img_lab.unsqueeze(0)
50
 
51
  if __name__ == "__main__":
52
+ parser = argparse.ArgumentParser()
53
+ parser.add_argument("-r", "--reference", type=str, help="ruta de la imagen de referencia")
54
+ parser.add_argument("-o", "--output", type=str, help="carpeta de salida para las imágenes coloreadas")
55
+ parser.add_argument("-ckpt", "--model_checkpoint", type=str, help="ruta del modelo de checkpoint")
56
+ args = parser.parse_args()
57
+
58
  device = "cuda"
59
 
60
+ ckpt_path = args.model_checkpoint or 'experiments/Color2Manga_gray/074000_gray.pt'
61
  test_dir_path = 'test_datasets/gray_test'
62
  no_extractor = False
 
 
 
63
 
64
+ # ... (resto del código)
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  while True:
67
+ # ... (resto del código)
 
 
 
 
 
 
 
 
 
68
 
69
  with torch.no_grad():
70
  img2_resize = F.interpolate(img2 / 255., size=(256, 256), mode='bilinear', recompute_scale_factor=False, align_corners=False)
 
73
  color_vector = colorEncoder(img2_resize)
74
 
75
  fake_ab = colorUNet((img1_L_resize, color_vector))
76
+ fake_ab = F.interpolate(fake_ab * 110, size=(height, width), mode='bilinear', recompute_scale_factor=False, align_corners=False)
77
 
78
  fake_img = torch.cat((img1_lab[:,:1,:,:], fake_ab), 1)
79
  fake_img = Lab2RGB_out(fake_img)
80
 
81
+ out_folder = os.path.join(output_folder, 'color')
82
+ if not os.path.exists(out_folder):
83
+ os.makedirs(out_folder)
84
+ out_img_path = os.path.join(out_folder, f'{img_name}_color.png')
85
 
86
  # show image
87
  Image.fromarray(fake_img).show()
88
  # save image
 
 
 
89
  io.imsave(out_img_path, fake_img)