写点什么

[人脸修复] 基于 CodeFormer 的人脸修复模型配置

作者:alexgaoyh
  • 2024-03-19
    河南
  • 本文字数:587 字

    阅读完需:约 2 分钟

背景

  近期在进行图像处理相关需求的时候,需要对旧照片进行修复,并了解到了 CodeFormer 这个基于 AI 技术深度学习的人脸复原模型,对其进行环境配置和试用,特此记录。

步骤

  1. 源码下载并解压进入目录

  2. git clone https://github.com/sczhou/CodeFormer.git

  3. unzip CodeFormer-master.zip

  4. cd CodeFormer-master

  5. 环境安装(清华源有时候会慢,在安装过程中使用的阿里云的源):

  6. conda create -n codeformer python=3.8 -y

  7. conda activate codeformer

  8. pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple

  9. python basicsr/setup.py develop

  10. conda install -c conda-forge dlib

  11. 模型下载后放置到指定文件夹

  12. weights/facelib 文件夹存放

  13. yolov5n-face.pth

  14. detection_mobilenet0.25_Final.pth

  15. detection_Resnet50_Final.pth

  16. parsing_parsenet.pth

  17. yolov5l-face.pth

  18. weights/CodeFormer 文件夹存放

  19. codeformer.pth

  20. 测试模型

  21. 单独图片人脸修复:python inference_codeformer.py -w 0.2 --has_aligned --input_path face.jpg

  22. 输出: Background upsampling: False, Face upsampling: False [1/1] Processing: face.jpg All results are saved in results/test_img_0.2

执行过程

[人脸修复]基于 CodeFormer 的人脸修复模型配置-修复效果

总结

  基于 CodeFormer,搭建环境后对人脸进行修复,并举出修复效果。

参考

  1. https://gitee.com/alexgaoyh

  2. https://pap-docs.pap.net.cn/


发布于: 刚刚阅读数: 5
用户头像

alexgaoyh

关注

DevOps 2013-12-08 加入

https://gitee.com/alexgaoyh

评论

发布
暂无评论
[人脸修复]基于CodeFormer的人脸修复模型配置_环境配置_alexgaoyh_InfoQ写作社区