分享一款有趣的工具——neural-style
neural-style是一款使用机器学习给照片添加各种风格的Python工具,详细介绍可以参考https://github.com/anishathalye/neural-style。
安装Python3;
从Github克隆代码;
1
git clone https://github.com/anishathalye/neural-style
安装需求的包
numpy
,Pillow
,scipy
,tensorflow
;1
pip install -r requirements.txt
下载训练好的模型放在neural-style的根目录;
Pre-trained VGG network (MD5
106118b7cf60435e6d8e04f6a6dc3657
)运行;
1
python neural_style.py --content <content file> --styles <style file> --output <output file>
<content file>
:原图路径;<style file>
:风格图片路径;<output file>
:输出文件路径;更多参数设置可运行
python neural_style.py -h
查看。
原图
风格
处理后的图片
分享一款有趣的工具——neural-style