Skip to content

Latest commit

 

History

History
 
 

U2Net_Portrait

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

U2Net_Portrait

模型名称 U2Net_Portrait
类别 图像 - 图像生成
网络 U^2Net
数据集 -
是否支持Fine-tuning
模型大小 254MB
最新更新日期 2021-02-26
数据指标 -

一、模型基本信息

  • 应用效果展示

    • 样例结果示例:


      输入图像

      输出图像

  • 模型介绍

    • U2Net_Portrait 可以用于提取人脸的素描结果。

二、安装

三、模型API预测

  • 1、预测代码示例

    • import paddlehub as hub
      import cv2
      
      model = hub.Module(name="U2Net_Portrait")
      result = model.Portrait_GEN(images=[cv2.imread('/PATH/TO/IMAGE')])
      # or
      # result = model.Portrait_GEN(paths=['/PATH/TO/IMAGE'])
  • 2、API

    • def Portrait_GEN(images=None,
                      paths=None,
                      scale=1,
                      batch_size=1,
                      output_dir='output',
                      face_detection=True,
                      visualization=False):
      • 人脸画像生成API。

      • 参数

        • images (list[numpy.ndarray]): 图片数据,ndarray.shape 为 [H, W, C];
        • paths (list[str]): 输入图像路径;
        • scale (float) : 缩放因子(与face_detection相关联);
        • batch_size (int) : batch大小;
        • output_dir (str): 图片的保存路径,默认设为 output;
        • visualization (bool) : 是否将结果保存为图片文件;;

        NOTE: paths和images两个参数选择其一进行提供数据

      • 返回

        • res (list[numpy.ndarray]): 输出图像数据,ndarray.shape 为 [H, W, C]

四、更新历史

  • 1.0.0

    初始发布

    • $ hub install U2Net_Portrait==1.0.0