Spaces:
Running
Running
File size: 16,197 Bytes
9c18e52 90fc7e5 9c18e52 c08a85b 9c18e52 90fc7e5 9c18e52 90fc7e5 9c18e52 90fc7e5 9c18e52 3c45f35 |
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
##!/usr/bin/python3
# -*- coding: utf-8 -*-
# @Time : 2025-03-12
# @Author : Junjie He
import os
import time
import uuid
import gradio as gr
import numpy as np
from PIL import Image
from src.anystory import call_anystory
from src.matting import ImageUniversalMatting
from src.util import upload_pil_2_oss
if not os.path.exists("models/tf_matting.pb"):
os.makedirs("models", exist_ok=True)
os.system(f"wget -O models/tf_matting.pb {os.getenv('MATTING_PATH')}")
universal_matting = ImageUniversalMatting("models/tf_matting.pb")
def image_matting(pil_image):
if pil_image.mode == "RGBA":
mask = np.array(pil_image)[..., -1] > 200
if np.all(mask):
mask = ((universal_matting(pil_image)[..., -1] > 200) * 255).astype(np.uint8)
else:
mask = ((np.array(pil_image)[..., -1] > 200) * 255).astype(np.uint8)
else:
mask = ((universal_matting(pil_image.convert("RGB"))[..., -1] > 200) * 255).astype(np.uint8)
pil_mask = Image.fromarray(mask)
np_image = np.array(pil_image.convert("RGB"))
np_mask = np.array(pil_mask)[..., None] / 255.
pil_masked_image = Image.fromarray((np_mask * np_image + (1 - np_mask) * 255.).astype(np.uint8))
return pil_masked_image, pil_mask
def process(
pil_subject_A_image=None,
pil_subject_A_mask=None,
pil_subject_B_image=None,
pil_subject_B_mask=None,
prompt="",
):
request_id = time.strftime('%Y%m%d-', time.localtime(time.time())) + str(uuid.uuid4())
if prompt == "":
raise gr.Error("Please enter your prompt")
if pil_subject_A_image is None and pil_subject_B_image is None:
raise gr.Error("Please upload your reference image(s)")
image_urls = []
if pil_subject_A_image is not None:
if pil_subject_A_mask is not None:
if pil_subject_A_mask.size != pil_subject_A_image.size:
raise gr.Error("Subject [A] image & mask size mismatch")
pil_subject_A_image = pil_subject_A_image.convert("RGB")
pil_subject_A_mask = pil_subject_A_mask.convert("L")
pil_subject_A_image = Image.merge("RGBA", (*pil_subject_A_image.split(), pil_subject_A_mask))
image_urls.append(upload_pil_2_oss(pil_subject_A_image, name=request_id + "_A.png"))
if pil_subject_B_image is not None:
if pil_subject_B_mask is not None:
if pil_subject_B_mask.size != pil_subject_B_image.size:
raise gr.Error("Subject [B] image & mask size mismatch")
pil_subject_B_image = pil_subject_B_image.convert("RGB")
pil_subject_B_mask = pil_subject_B_mask.convert("L")
pil_subject_B_image = Image.merge("RGBA", (*pil_subject_B_image.split(), pil_subject_B_mask))
image_urls.append(upload_pil_2_oss(pil_subject_B_image, name=request_id + "_B.png"))
res = call_anystory(image_urls, prompt)[0]
return res
def interface():
with gr.Row(variant="panel"):
gr.HTML(description + "<br>" + tips)
with gr.Row(variant="panel"):
with gr.Column(scale=2, min_width=100):
with gr.Row(equal_height=False):
with gr.Column(scale=1, min_width=100):
with gr.Tab(label="Subject [A]"):
with gr.Group():
with gr.Row(equal_height=True):
with gr.Column(min_width=100):
pil_subject_A_image = gr.Image(type="pil", label="Subject [A] Reference Image",
format="png", show_label=True, image_mode="RGBA")
with gr.Column(min_width=100):
with gr.Group():
pil_subject_A_mask = gr.Image(type="pil",
label="Subject [A] Mask (upload supported)",
format="png", show_label=True, image_mode="L")
seg_subject_A = gr.Button(value="Segment Subject")
with gr.Column(scale=1, min_width=100):
with gr.Tab(label="Subject [B]"):
with gr.Group():
with gr.Row(equal_height=True):
with gr.Column(min_width=100):
pil_subject_B_image = gr.Image(type="pil", label="Subject [B] Reference Image",
format="png", show_label=True, image_mode="RGBA")
with gr.Column(min_width=100):
with gr.Group():
pil_subject_B_mask = gr.Image(type="pil",
label="Subject [B] Mask (upload supported)",
format="png", show_label=True, image_mode="L")
seg_subject_B = gr.Button(value="Segment Subject")
with gr.Group():
prompt = gr.Textbox(value="", label='Prompt', lines=6, show_label=True)
with gr.Column(scale=1, min_width=100):
result_gallery = gr.Image(type="pil", label="Generated Image", visible=True, height=450)
# result_gallery = gr.Gallery(label='Generated Image', show_label=True, elem_id="gallery", preview=True,
# format="png", height=450)
run_button = gr.Button(value="🧑🎨 RUN")
generated_information = gr.Markdown(label="Generation Details", value="", visible=False)
seg_subject_A.click(
fn=set_image_seg_unfinished, outputs=generated_information
).then(
fn=image_matting, inputs=[pil_subject_A_image], outputs=[pil_subject_A_image, pil_subject_A_mask]
).then(
fn=set_image_seg_finished, outputs=generated_information
)
seg_subject_B.click(
fn=set_image_seg_unfinished, outputs=generated_information
).then(
fn=image_matting, inputs=[pil_subject_B_image], outputs=[pil_subject_B_image, pil_subject_B_mask]
).then(
fn=set_image_seg_finished, outputs=generated_information
)
run_button.click(
fn=set_image_generate_unfinished, outputs=generated_information
).then(
fn=process,
inputs=[pil_subject_A_image, pil_subject_A_mask, pil_subject_B_image, pil_subject_B_mask, prompt],
outputs=[result_gallery]
).then(
fn=set_image_generate_finished, outputs=generated_information
)
with gr.Row():
examples = [
[
"assets/examples/1.webp",
"assets/examples/1_mask.webp",
None,
None,
"Cartoon style. A sheep is riding a skateboard and gliding through the city, holding a wooden sign that says \"TongYi\".",
"assets/examples/1_output.webp",
],
[
"assets/examples/2.webp",
"assets/examples/2_mask.webp",
None,
None,
"Cartoon style. Sun Wukong stands on a tank, holding up an ancient wooden sign high in the air. The sign reads 'AnyStory'. The background is a cyberpunk-style city sky filled with towering buildings.",
"assets/examples/2_output.webp",
],
[
"assets/examples/3.webp",
"assets/examples/3_mask.webp",
None,
None,
"A modern and stylish Nezha playing an electric guitar, dynamic pose, vibrant colors, fantasy atmosphere, mythical Chinese character with a rock-and-roll twist, red scarf flowing in the wind, traditional elements mixed with contemporary design, cinematic lighting, 4k resolution",
"assets/examples/3_output.webp",
],
[
"assets/examples/4.webp",
"assets/examples/4_mask.webp",
None,
None,
"a man riding a bike on the road",
"assets/examples/4_output.webp",
],
[
"assets/examples/7.webp",
"assets/examples/7_mask.webp",
None,
None,
"Nezha is surrounded by a mysterious purple glow, with a pair of eyes glowing with an eerie red light. Broken talismans and debris float around him, highlighting his demonic nature and authority.",
"assets/examples/7_output.webp",
],
[
"assets/examples/8.webp",
"assets/examples/8_mask.webp",
None,
None,
"The car is driving through a cyberpunk city at night in the middle of a heavy downpour.",
"assets/examples/8_output.webp",
],
[
"assets/examples/9.webp",
"assets/examples/9_mask.webp",
None,
None,
"This cosmetic is placed on a table covered with roses.",
"assets/examples/9_output.webp",
],
[
"assets/examples/10.webp",
"assets/examples/10_mask.webp",
None,
None,
"A little boy model is posing for a photo.",
"assets/examples/10_output.webp",
],
# [
# "assets/examples/5_1.webp",
# "assets/examples/5_1_mask.webp",
# "assets/examples/5_2.webp",
# "assets/examples/5_2_mask.webp",
# "两个小孩骑着一辆炫酷的双人电动车,在热闹的菜市场中穿梭。周围是琳琅满目的蔬菜摊、水果筐和忙碌的摊主,他们表情专注又带点嬉笑,车篮里还装着几根胡萝卜和一把青菜,传统与现代元素在烟火气息中完美交融。",
# "assets/examples/5_output.webp",
# ],
[
"assets/examples/6_1.webp",
"assets/examples/6_1_mask.webp",
"assets/examples/6_2.webp",
"assets/examples/6_2_mask.webp",
"Two men are sitting by a wooden table, which is laden with delicious food and a pot of wine. One of the men holds a wine glass, drinking heartily with a bold expression; the other smiles as he pours wine for his companion, both of them engaged in cheerful conversation. In the background is an ancient pavilion surrounded by emerald bamboo groves, with sunlight filtering through the leaves to cast dappled shadows.",
"assets/examples/6_output.webp",
],
]
gr.Examples(
label="Examples",
examples=examples,
inputs=[pil_subject_A_image, pil_subject_A_mask, pil_subject_B_image, pil_subject_B_mask, prompt,
result_gallery],
)
def set_image_seg_unfinished():
return gr.update(
visible=True,
value="<h3>(Unfinished) Extracting Subject Mask...</h3>",
)
def set_image_seg_finished():
return gr.update(visible=True, value="<h3>Subject mask ready!</h3>")
def set_image_generate_unfinished():
return gr.update(
visible=True,
value="<h3>(Unfinished) Generating images...</h3>",
)
def set_image_generate_finished():
return gr.update(visible=True, value="<h3>Image generation is completed!</h3>")
if __name__ == "__main__":
title = r"""
<div style="text-align: center;">
<h1> AnyStory: Towards Unified Single and Multiple Subject Personalization in Text-to-Image Generation </h1>
<h1> V2.0.0 </h1>
<div style="display: flex; justify-content: center; align-items: center; text-align: center;">
<a href="https://arxiv.org/pdf/2501.09503"><img src="https://img.shields.io/badge/arXiv-2501.09503-red"></a>
<a href='https://aigcdesigngroup.github.io/AnyStory/'><img src='https://img.shields.io/badge/Project_Page-AnyStory-green' alt='Project Page'></a>
<a href='https://modelscope.cn/studios/iic/AnyStory'><img src='https://img.shields.io/badge/Demo-ModelScope-blue'></a>
</div>
</br>
</div>
"""
title_description = r"""
Official demo of <b>AnyStory 2</b> 🤗. We will continuously update this demo.
For technical details, please refer to our tech report: <a href='https://arxiv.org/pdf/2501.09503' target='_blank'><b>AnyStory: Towards Unified Single and Multiple Subject Personalization in Text-to-Image Generation</b></a>. 😊
"""
description = r"""🚀🚀🚀 Quick Start:<br>
1. Upload subject reference images (clean background; real human IDs unsupported for now), Add prompts (only EN supported), and Click "<b>RUN</b>".<br>
2. (Recommended) Click "<b>Segment Subject</b>" to create masks (or upload your own B&W masks) for subjects. This helps the model better reference the subject you specify (otherwise, we will perform automatic detection). 🤗<br>
"""
tips = r"""💡💡💡 Tips:<br>
If the subject doesn't appear, try adding a detailed description of the subject in the prompt that matches the reference image, and avoid conflicting details (e.g., significantly altering the subject's appearance). Multi-subject referencing in AnyStory2 is still being optimized. 🤗<br>
"""
citation = r"""
---
📝 **Citation**
<br>
If our work is helpful for your research or applications, please cite us via:
```bibtex
@article{he2025anystory,
title={AnyStory: Towards Unified Single and Multiple Subject Personalization in Text-to-Image Generation},
author={He, Junjie and Tuo, Yuxiang and Chen, Binghui and Zhong, Chongyang and Geng, Yifeng and Bo, Liefeng},
journal={arXiv preprint arXiv:2501.09503},
year={2025}
}
```
If you have any questions, feel free to open an issue or contact us directly at <b>[email protected]</b>.
"""
js = """
function createGradioAnimation() {
var container = document.createElement('div');
container.id = 'gradio-animation';
container.style.fontSize = '2em';
container.style.fontWeight = 'bold';
container.style.textAlign = 'center';
container.style.marginBottom = '20px';
var text = 'Welcome to AnyStory!';
for (var i = 0; i < text.length; i++) {
(function(i){
setTimeout(function(){
var letter = document.createElement('span');
letter.style.opacity = '0';
letter.style.transition = 'opacity 0.5s';
letter.innerText = text[i];
container.appendChild(letter);
setTimeout(function() {
letter.style.opacity = '1';
}, 50);
}, i * 250);
})(i);
}
var gradioContainer = document.querySelector('.gradio-container');
gradioContainer.insertBefore(container, gradioContainer.firstChild);
return 'Animation created';
}
"""
block = gr.Blocks(title="AnyStory2", js=js, theme=gr.themes.Ocean()).queue()
with block:
gr.HTML(title)
gr.HTML(title_description)
interface()
gr.HTML("<br>More examples: Intelligent creation of AI story pictures integrated with Qwen Agent")
gr.Gallery(value=["assets/storyboard_en.png"], columns=1, object_fit="contain", show_label=False)
gr.Markdown(citation)
block.launch(share=True, max_threads=10)
# block.launch(server_name='0.0.0.0', share=False, server_port=9999, max_threads=10)
|