File size: 12,674 Bytes
3f44be9 67e7350 3f44be9 |
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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
import gradio as gr
import hmac
import hashlib
import time
import os
import requests
from io import BytesIO
from PIL import Image
import uuid
example_path = os.path.join(os.path.dirname(__file__), 'assets')
clothing_list = os.listdir(os.path.join(example_path, "clothing"))
clothing_list_path = [os.path.join(example_path, "clothing", clothing) for clothing in clothing_list]
human_list = os.listdir(os.path.join(example_path, "human"))
human_list_path = [os.path.join(example_path, "human", human) for human in human_list]
base_url = os.getenv('base_url')
upload_image_url = os.getenv('upload_image_url')
upload_background_image_url = os.getenv('upload_background_image_url')
create_save_task_url = os.getenv('create_save_task_url')
execute_task_url = os.getenv('execute_task_url')
query_task_url = os.getenv('query_task_url')
secret_key = os.getenv('secret_key')
agent_version = os.getenv('agent_version')
agent_name = os.getenv('agent_name')
def parse_response(response):
data = {}
msg = ''
if response.status_code == 200:
try:
datas = response.json()
if datas:
data = datas.get("data")
if not data:
msg = datas.get("msg")
if not msg:
msg = "Field error."
else:
msg = "The parsing result is empty."
except Exception as e:
msg = f"parse error: {repr(e)}."
else:
msg = f'request error.'
return data, msg
def generate_signature(key, did, timestamp):
data = f"{did}:{timestamp}"
h = hmac.new(key.encode(), data.encode(), hashlib.sha256)
return h.hexdigest()
def url_to_image(url):
headers = {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
}
try:
response = requests.get(url, headers=headers, timeout=30)
except:
return None
if response.status_code == 200:
img = Image.open(BytesIO(response.content))
return img
return None
def start_task(task_id, timestamp, signature, did):
headers = {
'Did': did,
'X-Timestamp': timestamp,
'X-Signature': signature
}
data = {
"agentVersion": agent_version,
"agentName": agent_name,
"taskId": task_id,
"runFreeAsFallback": False
}
response = requests.post(base_url + execute_task_url, json=data, headers=headers)
data, msg = parse_response(response)
return data, msg
def create_task(image_url, timestamp, signature, did):
headers = {
'Did': did,
'X-Timestamp': timestamp,
'X-Signature': signature
}
data = {
"agentVersion": agent_version,
"agentName": agent_name,
"image": image_url
}
response = requests.post(base_url + create_save_task_url, json=data, headers=headers)
data, msg = parse_response(response)
return data, msg
def save_task(image_url, timestamp, signature, show_image, task_id, location_id, did):
headers = {
'Did': did,
'X-Timestamp': timestamp,
'X-Signature': signature
}
data = {
"agentVersion": agent_version,
"agentName": agent_name,
"image": image_url,
"showImage": show_image,
"taskId": task_id,
"locationId": location_id,
}
response = requests.post(base_url + create_save_task_url, json=data, headers=headers)
data, msg = parse_response(response)
return data, msg
def query_task(task_id, execution_id, timestamp, signature, did):
headers = {
'Did': did,
'X-Timestamp': timestamp,
'X-Signature': signature
}
data = {
"agentVersion": agent_version,
"agentName": agent_name,
"taskId": task_id,
"executionId": execution_id,
}
response = requests.post(base_url + query_task_url, json=data, headers=headers)
data, msg = parse_response(response)
return data, msg
def upload_image(image, signature, timestamp, upload_type, did):
if image is None:
return None
if upload_type == 'image':
upload_url = upload_image_url
else:
upload_url = upload_background_image_url
image_format = image.format if image.format else "PNG"
mime_type = f"image/{image_format.lower()}"
with BytesIO() as m_img:
image.save(m_img, format=image_format)
m_img.seek(0)
files = {'image': (f"main_image.{image_format.lower()}", m_img, mime_type)}
headers = {
'Did': did,
'X-Timestamp': timestamp,
'X-Signature': signature
}
response = requests.post(base_url + upload_url, files=files, headers=headers)
data, msg = parse_response(response)
return data, msg
def load_description(file_path):
with open(file_path, 'r', encoding='utf-8') as file:
content = file.read()
return content
def generate_image(main_image, background_image, did):
if not did:
did = str(uuid.uuid4())
if main_image is None or background_image is None:
m = "Please upload both the main image and the background reference image before generating."
return gr.Warning(m), did
timestamp = str(int(time.time()))
signature = generate_signature(
key=secret_key,
did=did,
timestamp=timestamp
)
upload_image_data, upload_image_msg = upload_image(
image=main_image,
signature=signature,
timestamp=timestamp,
upload_type='image',
did=did
)
if not upload_image_data:
return gr.Warning(upload_image_msg), did
image_url = upload_image_data.get("image")
if not image_url:
m = 'Upload image failed.'
return gr.Warning(m), did
create_task_data, create_task_msg = create_task(
image_url=image_url,
timestamp=timestamp,
signature=signature,
did=did
)
if not create_task_data:
return gr.Warning(create_task_msg), did
task_id = create_task_data.get("taskId")
show_image = create_task_data.get("showImage")
if not task_id or not show_image:
m = 'Create task failed.'
return gr.Warning(m), did
upload_image_data, upload_image_msg = upload_image(
image=background_image,
signature=signature,
timestamp=timestamp,
upload_type='background_image',
did=did
)
if not upload_image_data:
return gr.Warning(upload_image_msg), did
save_task_data, save_task_msg = save_task(
image_url=image_url,
timestamp=timestamp,
signature=signature,
show_image=show_image,
task_id=task_id,
location_id=upload_image_data,
did=did
)
if not save_task_data:
return gr.Warning(save_task_msg), did
save_task_id = save_task_data.get("taskId")
save_show_image = save_task_data.get("showImage")
if not save_task_id or not save_show_image:
return gr.Warning('Save task failed'), did
start_task_data, start_task_msg = start_task(
task_id=save_task_id,
timestamp=timestamp,
signature=signature,
did=did
)
if not start_task_data:
return gr.Warning(start_task_msg), did
execution_id = start_task_data.get("executionId")
if not execution_id:
m = "The task failed to start."
return gr.Warning(m), did
start_time = int(time.time())
while True:
m = "Query task failed."
query_task_data, query_task_msg = query_task(
task_id=save_task_id,
execution_id=execution_id,
timestamp=timestamp,
signature=signature,
did=did
)
if not query_task_data:
return gr.Warning(query_task_msg), did
executions = query_task_data.get("executions")
if not executions:
return gr.Warning(m), did
results = executions[0].get("result")
if not results:
return gr.Warning(m), did
status = results[0].get("status")
if status == "Failed":
return gr.Warning(m), did
elif status == "Success" or status == "Blocked":
img = results[0].get("image")
if img and str(img).strip() != "":
return url_to_image(img), did
end_time = int(time.time())
if end_time - start_time > 3600:
m = 'Query task timeout.'
return gr.Warning(m), did
time.sleep(2)
def preprocess_image(main_image):
return main_image
def preprocess_background_image(background_image):
return background_image
css = """
.image-container img {
max-height: 500px;
width: auto;
}
.hide-buttons .source-selection {
display: none;
}
#example-images .gallery {
display: flex;
flex-wrap: wrap;
}
#example-images .gallery-item .container{
width: 100%;
max-width: 100%;
}
#example-images .gallery-item {
flex: 0 0 32%;
max-width: 32%;
box-sizing: border-box;
display: flex;
text-align: center;
justify-content: center;
height: 200px;
}
"""
with gr.Blocks(css=css) as WeShop:
current_did = gr.State(value='')
gr.HTML(load_description("assets/title.md"))
with gr.Row():
with gr.Column():
gr.Markdown("#### Step 1: Upload a main image")
main_image_input = gr.Image(
type="pil",
label="Main Image",
elem_classes=["image-container", "hide-buttons"]
)
clothing_example = gr.Examples(
inputs=main_image_input,
examples_per_page=12,
examples=clothing_list_path,
elem_id="example-images",
outputs=main_image_input
)
with gr.Column():
gr.Markdown("#### Step 2: Upload a background reference image")
background_image_input = gr.Image(
type="pil",
label="Background reference image",
elem_classes=["image-container", "hide-buttons"]
)
human_example = gr.Examples(
inputs=background_image_input,
examples_per_page=12,
examples=human_list_path,
elem_id="example-images",
outputs=background_image_input
)
with gr.Column():
with gr.Row():
with gr.Column():
gr.Markdown("#### Step 3: Press 'Generate' to get the result")
output = gr.Image(
label="Result",
elem_classes=["image-container", "hide-buttons"],
interactive=False
)
with gr.Row():
submit_button = gr.Button("Generate")
submit_button.click(
fn=generate_image,
inputs=[main_image_input, background_image_input, current_did],
outputs=[output, current_did],
concurrency_limit=None
)
with gr.Column():
show_case = gr.Examples(
examples=[
["assets/examples/result_02_01.png", "assets/examples/result_02_02.png",
"assets/examples/result_02_03.png"],
["assets/examples/result_03_01.png", "assets/examples/result_03_02.png",
"assets/examples/result_03_03.png"],
["assets/examples/result_04_01.png", "assets/examples/result_04_02.png",
"assets/examples/result_04_03.png"],
["assets/examples/result_05_01.png", "assets/examples/result_05_02.png",
"assets/examples/result_05_03.png"],
["assets/examples/result_06_01.png", "assets/examples/result_06_02.png",
"assets/examples/result_06_03.png"],
],
inputs=[main_image_input, background_image_input, output],
)
main_image_input.upload(
fn=preprocess_image,
inputs=[main_image_input],
outputs=main_image_input
)
background_image_input.upload(
fn=preprocess_background_image,
inputs=[background_image_input],
outputs=background_image_input
)
WeShop.queue(api_open=False).launch(show_api=False)
|