当前位置:   article > 正文

【人工智能】python图像风格迁移,来欣赏梵高风格的石原里美吧!_实现图像风格迁移的梵高风格图像

实现图像风格迁移的梵高风格图像

图像的风格迁移,心心念念好久了啊!

简单几个步骤,就可以转换图片风格啦。

1. 在github下载模型,模型后缀名是 t7,新建 model 文件夹用来存放模型

图像风格迁移模型链接

2. 新建 fengge.py 文件,代码如下:

  1. import cv2 as cv
  2. import numpy as np
  3. import argparse
  4. parser = argparse.ArgumentParser(
  5. description='This script is used to run style transfer models from '
  6. 'https://github.com/jcjohnson/fast-neural-style using OpenCV')
  7. parser.add_argument('--input', help='Path to image or video. Skip to capture frames from camera')
  8. parser.add_argument('--model', help='Path to .t7 model')
  9. parser.add_argument('--width', default=-1, type=int, help='Resize input to specific width.')
  10. parser.add_argument('--height', default=-1, type=int, help='Resize input to s
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/307711
推荐阅读
相关标签
  

闽ICP备14008679号