-
Notifications
You must be signed in to change notification settings - Fork 254
/
style_transfer.py
150 lines (128 loc) · 7.08 KB
/
style_transfer.py
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
import os
import numpy as np
import torch
from util import save_image, load_image
import argparse
from argparse import Namespace
from torchvision import transforms
from torch.nn import functional as F
import torchvision
from model.dualstylegan import DualStyleGAN
from model.encoder.psp import pSp
class TestOptions():
def __init__(self):
self.parser = argparse.ArgumentParser(description="Exemplar-Based Style Transfer")
self.parser.add_argument("--content", type=str, default='./data/content/081680.jpg', help="path of the content image")
self.parser.add_argument("--style", type=str, default='cartoon', help="target style type")
self.parser.add_argument("--style_id", type=int, default=53, help="the id of the style image")
self.parser.add_argument("--truncation", type=float, default=0.75, help="truncation for intrinsic style code (content)")
self.parser.add_argument("--weight", type=float, nargs=18, default=[0.75]*7+[1]*11, help="weight of the extrinsic style")
self.parser.add_argument("--name", type=str, default='cartoon_transfer', help="filename to save the generated images")
self.parser.add_argument("--preserve_color", action="store_true", help="preserve the color of the content image")
self.parser.add_argument("--model_path", type=str, default='./checkpoint/', help="path of the saved models")
self.parser.add_argument("--model_name", type=str, default='generator.pt', help="name of the saved dualstylegan")
self.parser.add_argument("--output_path", type=str, default='./output/', help="path of the output images")
self.parser.add_argument("--data_path", type=str, default='./data/', help="path of dataset")
self.parser.add_argument("--align_face", action="store_true", help="apply face alignment to the content image")
self.parser.add_argument("--exstyle_name", type=str, default=None, help="name of the extrinsic style codes")
self.parser.add_argument("--wplus", action="store_true", help="use original pSp encoder to extract the intrinsic style code")
def parse(self):
self.opt = self.parser.parse_args()
if self.opt.exstyle_name is None:
if os.path.exists(os.path.join(self.opt.model_path, self.opt.style, 'refined_exstyle_code.npy')):
self.opt.exstyle_name = 'refined_exstyle_code.npy'
else:
self.opt.exstyle_name = 'exstyle_code.npy'
args = vars(self.opt)
print('Load options')
for name, value in sorted(args.items()):
print('%s: %s' % (str(name), str(value)))
return self.opt
def run_alignment(args):
import dlib
from model.encoder.align_all_parallel import align_face
modelname = os.path.join(args.model_path, 'shape_predictor_68_face_landmarks.dat')
if not os.path.exists(modelname):
import wget, bz2
wget.download('http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2', modelname+'.bz2')
zipfile = bz2.BZ2File(modelname+'.bz2')
data = zipfile.read()
open(modelname, 'wb').write(data)
predictor = dlib.shape_predictor(modelname)
aligned_image = align_face(filepath=args.content, predictor=predictor)
return aligned_image
if __name__ == "__main__":
device = "cuda"
parser = TestOptions()
args = parser.parse()
print('*'*98)
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Normalize(mean=[0.5, 0.5, 0.5],std=[0.5,0.5,0.5]),
])
generator = DualStyleGAN(1024, 512, 8, 2, res_index=6)
generator.eval()
ckpt = torch.load(os.path.join(args.model_path, args.style, args.model_name), map_location=lambda storage, loc: storage)
generator.load_state_dict(ckpt["g_ema"])
generator = generator.to(device)
if args.wplus:
model_path = os.path.join(args.model_path, 'encoder_wplus.pt')
else:
model_path = os.path.join(args.model_path, 'encoder.pt')
ckpt = torch.load(model_path, map_location='cpu')
opts = ckpt['opts']
opts['checkpoint_path'] = model_path
if 'output_size' not in opts:
opts['output_size'] = 1024
opts = Namespace(**opts)
opts.device = device
encoder = pSp(opts)
encoder.eval()
encoder.to(device)
exstyles = np.load(os.path.join(args.model_path, args.style, args.exstyle_name), allow_pickle='TRUE').item()
z_plus_latent=not args.wplus
return_z_plus_latent=not args.wplus
input_is_latent=args.wplus
print('Load models successfully!')
with torch.no_grad():
viz = []
# load content image
if args.align_face:
I = transform(run_alignment(args)).unsqueeze(dim=0).to(device)
I = F.adaptive_avg_pool2d(I, 1024)
else:
I = load_image(args.content).to(device)
viz += [I]
# reconstructed content image and its intrinsic style code
img_rec, instyle = encoder(F.adaptive_avg_pool2d(I, 256), randomize_noise=False, return_latents=True,
z_plus_latent=z_plus_latent, return_z_plus_latent=return_z_plus_latent, resize=False)
img_rec = torch.clamp(img_rec.detach(), -1, 1)
viz += [img_rec]
stylename = list(exstyles.keys())[args.style_id]
latent = torch.tensor(exstyles[stylename]).to(device)
if args.preserve_color and not args.wplus:
latent[:,7:18] = instyle[:,7:18]
# extrinsic styte code
exstyle = generator.generator.style(latent.reshape(latent.shape[0]*latent.shape[1], latent.shape[2])).reshape(latent.shape)
if args.preserve_color and args.wplus:
exstyle[:,7:18] = instyle[:,7:18]
# load style image if it exists
S = None
if os.path.exists(os.path.join(args.data_path, args.style, 'images/train', stylename)):
S = load_image(os.path.join(args.data_path, args.style, 'images/train', stylename)).to(device)
viz += [S]
# style transfer
# input_is_latent: instyle is not in W space
# z_plus_latent: instyle is in Z+ space
# use_res: use extrinsic style path, or the style is not transferred
# interp_weights: weight vector for style combination of two paths
img_gen, _ = generator([instyle], exstyle, input_is_latent=input_is_latent, z_plus_latent=z_plus_latent,
truncation=args.truncation, truncation_latent=0, use_res=True, interp_weights=args.weight)
img_gen = torch.clamp(img_gen.detach(), -1, 1)
viz += [img_gen]
print('Generate images successfully!')
save_name = args.name+'_%d_%s'%(args.style_id, os.path.basename(args.content).split('.')[0])
save_image(torchvision.utils.make_grid(F.adaptive_avg_pool2d(torch.cat(viz, dim=0), 256), 4, 2).cpu(),
os.path.join(args.output_path, save_name+'_overview.jpg'))
save_image(img_gen[0].cpu(), os.path.join(args.output_path, save_name+'.jpg'))
print('Save images successfully!')