当前位置: 首页 > article >正文

背景替换大模型图像处理gradio部署服务

愿我们终有重逢之时,而你还记得我们曾经讨论的话题。

 group 868373192

 second group 277356808

1. 导入库
import gradio as gr
from PIL import Image
from modelscope_studio import encode_image, decode_image, call_demo_service
import json
import os
from skimage import io
import numpy as np
  • gradio: 用于创建交互式Web界面的库。

  • PIL: Python Imaging Library,用于图像处理。

  • modelscope_studio: 自定义库,包含图像编码、解码和调用模型服务的功能。

  • json: 用于处理JSON数据。

  • os: 用于处理文件路径。

  • skimage.io: 用于读取图像。

  • numpy: 用于数值计算。

2. 定义推理函数 inference
def inference(image: Image, bk: Image) -> Image:
    if image is None or bk is None:
        return None, None
    input_url = encode_image(image)

    data = {
        "task": "portrait-matting",
        "inputs": [
            input_url
        ],
        "urlPaths": {
            "inUrls": [
                {
                    "value": input_url,
                    "fileType": "png",
                    "type": "image",
                    "displayType": "ImgUpload",
                    "displayProps": {
                        "label": {
                            "text": "原图",
                            "style": {
                                "background": "rgba(98,74,255,0.8)",
                                "color": "#fff"
                            }
                        }
                    },
                    "validator": {
                        "max_resolution": "3000*3000",
                        "max_size": "10M"
                    },
                    "name": "",
                    "title": ""
                }
            ],
            "outUrls": [
                {
                    "outputKey": "output_img",
                    "type": "image"
                }
            ]
        }
    }
    model_id = 'cv_unet_image-matting'
    result = call_demo_service(path='damo', name=model_id, data=json.dumps(data))
    print(result)
    res_url = result['data']['output_img']

    res_img = io.imread(res_url)
    alpha = res_img[:, :, 3:4] / 255.0
    w, h = image.size
    bk = bk.resize((w, h))
    combine_img = image * alpha + bk * (1 - alpha)
    combine_img = combine_img.astype(np.uint8)
    return res_img, combine_img
  • 功能: 该函数接收两张图像(人像和背景),使用模型对输入的人像进行抠图,然后将抠图结果与背景图像进行合成,生成新的图像。

  • 步骤:

    1. 检查输入: 确保输入图像不为空。

    2. 图像编码: 将输入图像编码为URL。

    3. 构建请求数据: 构建包含任务类型、输入图像URL等信息的JSON数据。

    4. 调用模型服务: 使用call_demo_service函数调用模型服务进行抠图。

    5. 读取结果: 从模型服务返回的结果中获取抠图结果的URL,并读取该图像。

    6. 处理图像: 提取抠图结果的Alpha通道,调整背景图像大小,将抠图结果与背景图像合成。

    7. 返回结果: 返回抠图结果和合成后的新图像。

3. 定义Gradio界面
css_style = "#fixed_size_img {height: 240px;} " \
            "#overview {margin: auto;max-width: 400px; max-height: 400px;}"

title = "一键人像抠图换背景"
description = "输入一张人像照片和背景图,本空间能生成抠图结果,并进行换背景,一键穿越!欢迎使用!"
examples = [[os.path.dirname(__file__) + 'input1.jpg', os.path.dirname(__file__) + 'bk1.jpg'],
            [os.path.dirname(__file__) + 'input2.jpg', os.path.dirname(__file__) + 'bk2.jpg'],
            [os.path.dirname(__file__) + 'input3.jpg', os.path.dirname(__file__) + 'bk3.jpg']]

with gr.Blocks(title=title, css=css_style) as demo:
    gr.HTML('''
      <div style="text-align: center; max-width: 720px; margin: 0 auto;">
                  <div
                    style="
                      display: inline-flex;
                      align-items: center;
                      gap: 0.8rem;
                      font-size: 1.75rem;
                    "
                  >
                    <h1 style="font-family:  PingFangSC; font-weight: 500; font-size: 36px; margin-bottom: 7px;">


                      一键人像抠图换背景
                    </h1>       
      ''')

    gr.Markdown(description)
    with gr.Row():
        img_input1 = gr.Image(label="人像", type="pil", elem_id="fixed_size_img")
        img_output1 = gr.Image(label="抠图", type="pil", elem_id="fixed_size_img")
    with gr.Row():
        img_input2 = gr.Image(label="背景", type="pil", elem_id="fixed_size_img")
        img_output2 = gr.Image(label="新图", type="pil", elem_id="fixed_size_img")
    with gr.Row():
        btn_submit = gr.Button(value="一键抠图换背景", elem_id="blue_btn")
        # btn_clear = gr.Button(value="清除")

    examples = gr.Examples(examples=examples, inputs=[img_input1, img_input2], outputs=[img_output1, img_output2])
    btn_submit.click(inference, inputs=[img_input1, img_input2], outputs=[img_output1, img_output2])

demo.launch()
  • 功能: 创建一个Gradio界面,允许用户上传人像和背景图像,并展示抠图结果和合成后的新图像。

  • 界面元素:

    • 标题: 显示“一键人像抠图换背景”。

    • 描述: 显示功能的简要说明。

    • 输入框: 用户上传人像和背景图像。

    • 输出框: 显示抠图结果和合成后的新图像。

    • 按钮: 用户点击按钮后,调用inference函数进行抠图和合成。

    • 示例: 提供一些示例图像供用户参考。

4. 启动Gradio界面
demo.launch()
  • 功能: 启动Gradio界面,用户可以在浏览器中访问并使用该工具。

总结

该代码实现了一个基于Gradio的Web界面,用户可以通过上传人像和背景图像,使用预训练的模型进行人像抠图,并将抠图结果与背景图像合成,生成新的图像。界面简洁直观,适合用于展示和体验人像抠图换背景的功能。


http://www.kler.cn/a/397226.html

相关文章:

  • 高级数据结构——hash表与布隆过滤器
  • ubuntu 22.04 shell
  • 黑马嵌入式开发入门模电基础学习笔记
  • 微信小程序navigateTo:fail webview count limit exceed
  • Wxml2Canvas小程序将dom转为图片,bug总结
  • 图像处理技术椒盐噪声
  • Vue 项目打包后环境变量丢失问题(清除缓存),区分.env和.env.*文件
  • 革新人脸图片智能修复
  • 【算法】【优选算法】前缀和(上)
  • ‌REST风格(Representational State Transfer)
  • 神经网络的正则化(一)
  • 设计模式:工厂方法模式和策略模式
  • “南海明珠”-黄岩岛(民主礁)领海基线WebGIS绘制实战
  • C# x Unity 从玩家控制类去分析命令模式该如何使用
  • 精通rust宏系列教程-调试过程宏
  • stm32 内部温度传感器使用
  • 封装一个省市区的筛选组件
  • 【提高篇】3.3 GPIO(三,工作模式详解 上)
  • MuMu模拟器安卓12安装Xposed 框架
  • python爬虫快速获取商品历史价格信息
  • Ubuntu 系统端口查询与管理详细分析
  • linux001.在Oracle VM VirtualBox中ubuntu虚拟系统扩容
  • mongoDB的安装及使用
  • 中缀表达式转后缀表达式
  • 重学SpringBoot3-各种配置的优先级对比
  • [JAVA]MyBatis框架—如何获取SqlSession对象实现数据交互(基础篇)