File size: 1,569 Bytes
dc403f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import shutil
import gradio as gr
from PIL import Image
import sys, os
from rembg import remove


def run_rembg(img):
    output = remove(img)
    return output


if __name__=="__main__":

       
    with gr.Blocks() as demo:

        gr.Markdown(
            """
            <center><h1>Image Matting using U<sup>2</sup>-Net</h1></center>
            """
        )        
        with gr.Row():
            with gr.Column():
                gr.Markdown(
                    """
                    Input Image
                    """
                )        
                image_input = gr.Image(type="numpy", label=" ")
            with gr.Column():
                gr.Markdown(
                    """
                    Output Image
                    """
                )        
                image_output = gr.Image(type="numpy", label=" ")
        
        btn = gr.Button("Run!")
        
        btn.click(
            fn=run_rembg,
            inputs=image_input,
            outputs=image_output,
            api_name="imageMatting"
            )

        gr.Markdown(
            """
            ---
            <b>Acknowledgments</b>
            - Library
              - Library Git hub : [danielgatis/rembg](https://github.com/danielgatis/rembg)
              - Cloned on 2023/3/12  
            - Algorithm        
              - Library Git hub : [U<sup>2</sup>-Net](https://github.com/xuebinqin/U-2-Net)  
            
            """
        )

    demo.launch(
        favicon_path="./assets/ハサミのフリーアイコン.png"
    )