首页 > 其他分享> > NS之VGG(Keras):基于Keras的VGG16实现之《复仇者联盟3》灭霸风格迁移设计(A Neural Algorithm of Artistic Style)—daidingdaiding
NS之VGG(Keras):基于Keras的VGG16实现之《复仇者联盟3》灭霸风格迁移设计(A Neural Algorithm of Artistic Style)—daidingdaiding
作者:互联网
NS之VGG(Keras):基于Keras的VGG16实现之《复仇者联盟3》灭霸风格迁移设计(A Neural Algorithm of Artistic Style)
导读
通过代码设计,基于Keras的VGG16实现A Neural Algorithm of Artistic Style之灭霸风格迁移设计
输出结果实现
灭霸风格素材
1、对我的偶像胡歌,下手……
2、其他风格迁移设计
核心代码
#Keras:基于Keras的VGG16实现A Neural Algorithm of Artistic Style
from keras.preprocessing.image import load_img, img_to_array
import numpy as np
from scipy.misc import imsave
from scipy.optimize import fmin_l_bfgs_b
import time
from keras.applications.vgg16 import VGG16
from keras.applications.vgg16 import preprocess_input
from keras import backend as K
import os
# References
- [A Neural Algorithm of Artistic Style](http://arxiv.org/abs/1508.06576)
'''
base_image_path=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\content\20180214(21).jpg'
style_reference_image_path=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\style\mieba02.jpg'
result_prefix=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\results'
iterations=10
content_weight=0.025
style_weight=1.0
total_variation_weight=1.0
标签:style,Algorithm,Keras,VGG16,Style,Python,import 来源: https://blog.csdn.net/qq_41185868/article/details/100903430