Commit
Β·
1c6ea49
1
Parent(s):
48147ae
UI updated
Browse files- app.py +104 -2
- header.html +23 -0
app.py
CHANGED
|
@@ -1,12 +1,20 @@
|
|
| 1 |
import PIL
|
| 2 |
import torch
|
| 3 |
import gradio as gr
|
|
|
|
| 4 |
from process import load_seg_model, get_palette, generate_mask
|
| 5 |
|
| 6 |
|
|
|
|
| 7 |
device = 'cpu'
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
|
|
|
| 10 |
|
| 11 |
def initialize_and_load_models():
|
| 12 |
|
|
@@ -35,5 +43,99 @@ description = "An app for Cloth Segmentation"
|
|
| 35 |
inputs = [input_image]
|
| 36 |
outputs = [cloth_seg_image]
|
| 37 |
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import PIL
|
| 2 |
import torch
|
| 3 |
import gradio as gr
|
| 4 |
+
import os
|
| 5 |
from process import load_seg_model, get_palette, generate_mask
|
| 6 |
|
| 7 |
|
| 8 |
+
|
| 9 |
device = 'cpu'
|
| 10 |
|
| 11 |
+
def read_content(file_path: str) -> str:
|
| 12 |
+
"""read the content of target file
|
| 13 |
+
"""
|
| 14 |
+
with open(file_path, 'r', encoding='utf-8') as f:
|
| 15 |
+
content = f.read()
|
| 16 |
|
| 17 |
+
return content
|
| 18 |
|
| 19 |
def initialize_and_load_models():
|
| 20 |
|
|
|
|
| 43 |
inputs = [input_image]
|
| 44 |
outputs = [cloth_seg_image]
|
| 45 |
|
| 46 |
+
css = '''
|
| 47 |
+
.container {max-width: 1150px;margin: auto;padding-top: 1.5rem}
|
| 48 |
+
#image_upload{min-height:400px}
|
| 49 |
+
#image_upload [data-testid="image"], #image_upload [data-testid="image"] > div{min-height: 400px}
|
| 50 |
+
#mask_radio .gr-form{background:transparent; border: none}
|
| 51 |
+
#word_mask{margin-top: .75em !important}
|
| 52 |
+
#word_mask textarea:disabled{opacity: 0.3}
|
| 53 |
+
.footer {margin-bottom: 45px;margin-top: 35px;text-align: center;border-bottom: 1px solid #e5e5e5}
|
| 54 |
+
.footer>p {font-size: .8rem; display: inline-block; padding: 0 10px;transform: translateY(10px);background: white}
|
| 55 |
+
.dark .footer {border-color: #303030}
|
| 56 |
+
.dark .footer>p {background: #0b0f19}
|
| 57 |
+
.acknowledgments h4{margin: 1.25em 0 .25em 0;font-weight: bold;font-size: 115%}
|
| 58 |
+
#image_upload .touch-none{display: flex}
|
| 59 |
+
@keyframes spin {
|
| 60 |
+
from {
|
| 61 |
+
transform: rotate(0deg);
|
| 62 |
+
}
|
| 63 |
+
to {
|
| 64 |
+
transform: rotate(360deg);
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
+
#share-btn-container {
|
| 68 |
+
display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
|
| 69 |
+
}
|
| 70 |
+
#share-btn {
|
| 71 |
+
all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;
|
| 72 |
+
}
|
| 73 |
+
#share-btn * {
|
| 74 |
+
all: unset;
|
| 75 |
+
}
|
| 76 |
+
#share-btn-container div:nth-child(-n+2){
|
| 77 |
+
width: auto !important;
|
| 78 |
+
min-height: 0px !important;
|
| 79 |
+
}
|
| 80 |
+
#share-btn-container .wrap {
|
| 81 |
+
display: none !important;
|
| 82 |
+
}
|
| 83 |
+
'''
|
| 84 |
+
example={}
|
| 85 |
+
image_dir='input'
|
| 86 |
+
|
| 87 |
+
image_list=[os.path.join(image_dir,file) for file in os.listdir(image_dir)]
|
| 88 |
+
image_list.sort()
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
image_blocks = gr.Blocks(css=css)
|
| 92 |
+
with image_blocks as demo:
|
| 93 |
+
gr.HTML(read_content("header.html"))
|
| 94 |
+
with gr.Group():
|
| 95 |
+
with gr.Box():
|
| 96 |
+
with gr.Row():
|
| 97 |
+
with gr.Column():
|
| 98 |
+
image = gr.Image(source='upload', elem_id="image_upload", type="pil", label="Input Image")
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
with gr.Column():
|
| 102 |
+
image_out = gr.Image(label="Output", elem_id="output-img").style(height=400)
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
|
| 107 |
+
|
| 108 |
+
with gr.Row():
|
| 109 |
+
with gr.Column():
|
| 110 |
+
gr.Examples(image_list, inputs=[image],label="Examples - Input Images",examples_per_page=12)
|
| 111 |
+
with gr.Column():
|
| 112 |
+
with gr.Row(elem_id="prompt-container").style(mobile_collapse=False, equal_height=True):
|
| 113 |
+
btn = gr.Button("Run!").style(
|
| 114 |
+
margin=False,
|
| 115 |
+
rounded=(False, True, True, False),
|
| 116 |
+
full_width=True,
|
| 117 |
+
)
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
|
| 121 |
+
btn.click(fn=run, inputs=[image], outputs=[image_out])
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
gr.HTML(
|
| 127 |
+
"""
|
| 128 |
+
<div class="footer">
|
| 129 |
+
<p>Model by <a href="" style="text-decoration: underline;" target="_blank">WildOctopus</a> - Gradio Demo by π€ Hugging Face
|
| 130 |
+
</p>
|
| 131 |
+
</div>
|
| 132 |
+
<div class="acknowledgments">
|
| 133 |
+
<p><h4>ACKNOWLEDGEMENTS</h4></p>
|
| 134 |
+
<p>
|
| 135 |
+
U2net model is from original u2net repo. Thanks to <a href="https://github.com/xuebinqin/U-2-Net" style="text-decoration: underline;" target="_blank">Xuebin Qin</a> for amazing repo.</p>
|
| 136 |
+
<p>Codes are modified from <a href="https://github.com/levindabhi/cloth-segmentation" style="text-decoration: underline;" target="_blank">levindabhi/cloth-segmentation</a>
|
| 137 |
+
</p>
|
| 138 |
+
"""
|
| 139 |
+
)
|
| 140 |
+
|
| 141 |
+
image_blocks.launch(share=True)
|
header.html
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div style="text-align: center; max-width: 650px; margin: 0 auto;">
|
| 2 |
+
<div style="
|
| 3 |
+
display: inline-flex;
|
| 4 |
+
gap: 0.8rem;
|
| 5 |
+
font-size: 1.75rem;
|
| 6 |
+
justify-content: center;
|
| 7 |
+
margin-bottom: 10px;
|
| 8 |
+
">
|
| 9 |
+
<h1 style="font-weight: 900; align-items: center; margin-bottom: 7px; margin-top: 20px;">
|
| 10 |
+
Cloth Segmentation
|
| 11 |
+
</h1>
|
| 12 |
+
</div>
|
| 13 |
+
<div>
|
| 14 |
+
<p style="align-items: center; margin-bottom: 7px;">
|
| 15 |
+
Cloth Segmentation, upload a image and wait for the model to generate the segmentation map.
|
| 16 |
+
</p>
|
| 17 |
+
<p style="align-items: center; margin-bottom: 7px;">
|
| 18 |
+
If you like this demo, please help to β the <a style="text-decoration: underline;" href="https://github.com/wildoctopus/huggingface-cloth-segmentation">Github Repo</a> π.
|
| 19 |
+
</p>
|
| 20 |
+
<p>You can skip the queue by duplicating this space and upgrading to gpu in settings.
|
| 21 |
+
|
| 22 |
+
</div>
|
| 23 |
+
</div>
|