Instructions to use zeyuren2002/EvalMDE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use zeyuren2002/EvalMDE with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("zeyuren2002/EvalMDE", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
File size: 26,732 Bytes
7f921f4 | 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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 | import os
import gc
os.environ["TOKENIZERS_PARALLELISM"] = "false"
import sys
from pathlib import Path
current_dir = Path(__file__).resolve().parent
if str(current_dir) not in sys.path:
sys.path.insert(0, str(current_dir))
from typing import List, Optional, Tuple
import torch
import numpy as np
from PIL import Image
import gradio as gr
import matplotlib.pyplot as plt
from scipy.ndimage import binary_dilation
# === 引入 ImageSlider ===
try:
from gradio_imageslider import ImageSlider
except ImportError:
print("⚠️ Warning: gradio_imageslider not installed. Using standard Image component fallback.")
ImageSlider = None
from pipelines.flux_image_new import FluxImagePipeline
from models.utils import load_state_dict,parse_flux_model_configs
from models.unified_dataset import UnifiedDataset, gen_points
from models.flux_dit import FluxDiTStateDictConverter
converter = FluxDiTStateDictConverter()
# 全局变量
pipe = None
current_model = None
MODEL_INPUT_SIZE = 768
DISPLAY_LONG_SIDE = 768
resolution = MODEL_INPUT_SIZE
torch_dtype = torch.bfloat16
### Please Change the model root path below to your own model directory
model_root = "./FLUX.1-Kontext-dev"
# 模型配置
MODEL_CONFIGS = {
"Depth_Lora": {
"path": "ckpts/depth_lora.safetensors",
"task": "depth"
},
"Normal_Lora": {
"path": "ckpts/normal_lora.safetensors",
"task": "normal"
},
"Matting_Lora": {
"path": "ckpts/matting_lora.safetensors",
"task": "matting"
},
"Depth_Full": {
"path": "ckpts/depth.safetensors",
"task": "depth"
},
"Normal_Full": {
"path": "ckpts/normal.safetensors",
"task": "normal"
},
"Matting_Full": {
"path": "ckpts/matting.safetensors",
"task": "matting"
},
}
# 全局变量存储
selected_points = []
original_image = None
brush_mask = None
# ================= 工具函数 =================
def resize_image_to_square(image: Image.Image, target_size: int = MODEL_INPUT_SIZE) -> Image.Image:
if image.width == target_size and image.height == target_size:
return image
return image.resize((target_size, target_size), Image.Resampling.BILINEAR)
def resize_long_side(image: Image.Image, target_long_side: int = DISPLAY_LONG_SIDE) -> Image.Image:
width, height = image.size
long_side = max(width, height)
if long_side <= target_long_side:
return image
scale = target_long_side / long_side
new_width = max(1, int(width * scale))
new_height = max(1, int(height * scale))
return image.resize((new_width, new_height), Image.Resampling.BILINEAR)
def resize_array_long_side(image_array: np.ndarray, target_long_side: int = DISPLAY_LONG_SIDE) -> np.ndarray:
h, w = image_array.shape[:2]
if max(h, w) <= target_long_side:
return image_array
scale = target_long_side / max(h, w)
new_h = max(1, int(h * scale))
new_w = max(1, int(w * scale))
try:
import cv2
return cv2.resize(image_array, (new_w, new_h), interpolation=cv2.INTER_NEAREST)
except ImportError:
pil_image = Image.fromarray(image_array)
resized = pil_image.resize((new_w, new_h), Image.Resampling.NEAREST)
return np.array(resized)
# ================= 初始化与模型加载 =================
def initialize_pipeline():
global pipe
if pipe is not None:
return
pipe = FluxImagePipeline.from_pretrained(
torch_dtype=torch_dtype,
device="cuda" if torch.cuda.is_available() else "cpu",
model_configs=parse_flux_model_configs(model_root)
)
# cleanup_memory()
print("Pipeline loaded successfully!")
def load_model(model_name: str, progress=gr.Progress()):
global current_model
if model_name == current_model:
return f"{model_name} active"
if pipe is None:
progress(0, desc="Initializing...")
initialize_pipeline()
model_config = MODEL_CONFIGS[model_name]
state_dict_path = model_config["path"]
progress(0.0, desc=f"Loading {model_name}...")
if "lora" in state_dict_path:
pipe.load_lora(pipe.dit, state_dict_path, hotload=False)
else:
pipe.loader.unload(pipe.dit) # 卸载任何已加载的 LoRA
state_dict = load_state_dict(state_dict_path)
pipe.dit.load_state_dict(state_dict)
del state_dict # 立即释放 state_dict
current_model = model_name
progress(1.0, desc="Complete")
return f"{model_name} loaded"
def handle_model_switch(model_name: str):
return load_model(model_name)
# ================= 图像处理逻辑 =================
def create_alpha_mask_from_points_and_brush(width: int, height: int,
points: List[Tuple[int, int]] = None,
brush_mask_original: np.ndarray = None,
orig_w: int = None, orig_h: int = None,
point_radius: int = 100) -> np.ndarray:
alpha = np.zeros((height, width), dtype=np.float32)
if points and len(points) > 0:
for point_x, point_y in points:
scaled_x = int(point_x * width / orig_w)
scaled_y = int(point_y * height / orig_h)
y_coords, x_coords = np.ogrid[:height, :width]
mask = (x_coords - scaled_x) ** 2 + (y_coords - scaled_y) ** 2 <= point_radius ** 2
alpha[mask] = 1.0
if brush_mask_original is not None:
brush_mask_resized = Image.fromarray((brush_mask_original * 255).astype(np.uint8)).resize((width, height), Image.NEAREST)
brush_mask_resized = np.array(brush_mask_resized) / 255.0
alpha = np.maximum(alpha, brush_mask_resized)
return alpha
def inference(model_name: str, image: np.ndarray, click_points: Optional[List[Tuple[int, int]]] = None,
num_inference_steps: int = 4, seed: int = 42) -> Tuple[Image.Image, str]:
if image is None:
return None, "No image provided"
if model_name[0] == "S":
return None, "Please select a model"
load_model(model_name)
model_config = MODEL_CONFIGS[model_name]
task = model_config["task"]
transform = UnifiedDataset.default_image_operator(height=resolution, width=resolution)
orig_h, orig_w = image.shape[:2]
pil_image = Image.fromarray(image)
pil_image_sq = resize_image_to_square(pil_image, MODEL_INPUT_SIZE)
try:
out_np = None
if task in ["depth", "normal"]:
out_np = pipe(
prompt=f"Transform to {task} map while maintaining original composition",
kontext_images=transform(pil_image_sq),
height=MODEL_INPUT_SIZE, width=MODEL_INPUT_SIZE,
embedded_guidance=1,
num_inference_steps=num_inference_steps,
seed=seed,
output_type="np",
rand_device="cuda",
task=task,
)
if task == "depth":
if out_np.ndim == 3:
out_np = np.mean(out_np, axis=2)
# out_np = (out_np + 0.5) ** 2.2
# out_np = (out_np - out_np.min()) / (out_np.max() - out_np.min()+1e-6)
# out_np = np.pad(out_np, 1, mode='constant', constant_values=0)
cmap = plt.get_cmap('Spectral')
out_np = cmap(out_np)[:, :, :3]
# out_np = out_np[1:-1, 1:-1]
out_np = (out_np * 255).astype(np.uint8)
elif task == "normal":
out_np = (out_np.clip(-1, 1) + 1) / 2 * 255.0
out_np = out_np.astype(np.uint8)
elif task == "matting":
alpha = create_alpha_mask_from_points_and_brush(
resolution, resolution,
points=click_points,
brush_mask_original=brush_mask,
orig_w=orig_w, orig_h=orig_h,
point_radius=100
)
points, _ = gen_points(alpha, num_points=10, radius=30)
points_tensor = torch.from_numpy(points * 2 - 1).repeat(3, 1, 1).to("cuda")
kontext_inputs = [transform(pil_image_sq), points_tensor]
out_np = pipe(
prompt=f"Transform to {task} map while maintaining original composition",
kontext_images=kontext_inputs,
height=MODEL_INPUT_SIZE, width=MODEL_INPUT_SIZE,
embedded_guidance=1,
num_inference_steps=num_inference_steps,
seed=seed,
output_type="np",
rand_device="cuda",
task=task,
)
out_np = ((out_np) * 255.0).astype(np.uint8)
out_pil = Image.fromarray(out_np)
out_pil = out_pil.resize((orig_w, orig_h), Image.Resampling.NEAREST)
out_pil = resize_long_side(out_pil, DISPLAY_LONG_SIDE)
return out_pil, f"Complete · {model_name}"
except Exception as e:
import traceback
traceback.print_exc()
return None, f"Error: {str(e)}"
def draw_points_on_image(image: np.ndarray, points: List[Tuple[int, int]],
point_radius: int = 9, coverage_radius: int = 100,
show_coverage: bool = True) -> np.ndarray:
# 始终在原图的拷贝上绘制,避免叠加污染
img_with_markers = image.copy().astype(np.float32)
for x, y in points:
if show_coverage:
for dx in range(-coverage_radius, coverage_radius + 1):
for dy in range(-coverage_radius, coverage_radius + 1):
if dx * dx + dy * dy <= coverage_radius * coverage_radius:
new_x, new_y = x + dx, y + dy
if 0 <= new_x < image.shape[1] and 0 <= new_y < image.shape[0]:
# Emerald coverage area
img_with_markers[new_y, new_x] = img_with_markers[new_y, new_x] * 0.6 + np.array([16, 185, 129]) * 0.4
for dx in range(-point_radius, point_radius + 1):
for dy in range(-point_radius, point_radius + 1):
if dx * dx + dy * dy <= point_radius * point_radius:
new_x, new_y = x + dx, y + dy
if 0 <= new_x < image.shape[1] and 0 <= new_y < image.shape[0]:
# White center point
img_with_markers[new_y, new_x] = [255, 255, 255]
return img_with_markers.astype(np.uint8)
# ================= 事件处理 (修复重点) =================
def on_image_upload(image):
"""
处理图片上传:
1. 提取原图并保存到全局变量 original_image。
2. 重置 selected_points。
3. 关键修复:不要返回图片给 input_image,只返回状态和清空结果。
"""
global selected_points, original_image, brush_mask
selected_points = []
brush_mask = None
if image is None:
original_image = None
return "Invalid image format", None
# ImageEditor 默认返回的是 dict
if isinstance(image, dict):
# 优先取 background,如果为空取 composite
bg = image.get('background')
if bg is None:
bg = image.get('composite')
if bg is None:
original_image = None
return "Unable to read image", None
# 保存纯净原图 (去除任何alpha通道如果不需要,或者保留)
if bg.ndim == 3 and bg.shape[2] == 4:
original_image = bg[:, :, :3] # 只要RGB
else:
original_image = bg
else:
# 假如是直接 numpy
original_image = image
# ⚠️ 关键:这里只返回 Text 和 None(清空结果),不返回 image
return "Image loaded", None
def on_image_click(image, evt: gr.SelectData):
"""
处理点击打点。
这里需要返回图片来显示红点。
"""
global selected_points, original_image
# 如果 original_image 还没初始化,尝试从当前的 image 参数恢复
if original_image is None:
if isinstance(image, dict):
bg = image.get('background')
if bg is not None:
original_image = bg[:,:,:3] if bg.shape[2]==4 else bg
elif isinstance(image, np.ndarray):
original_image = image
if original_image is None:
return image, "No image found"
# 记录点坐标
x, y = evt.index[0], evt.index[1]
selected_points.append((x, y))
# 计算半径
orig_h, orig_w = original_image.shape[:2]
display_coverage_radius = int(100 * orig_w / resolution)
# 在 干净的 original_image 上重新绘制所有点
# 这样可以避免多次点击导致圆圈叠加颜色变深或模糊
img_with_markers = draw_points_on_image(
original_image,
selected_points,
point_radius=9,
coverage_radius=display_coverage_radius,
show_coverage=True
)
# 返回给 Editor 显示
return img_with_markers, f"{len(selected_points)} point{'s' if len(selected_points) > 1 else ''} selected"
def reset_selection(image):
"""
重置:清空所有内容,准备重新上传
"""
global selected_points, original_image, brush_mask
selected_points = []
brush_mask = None
original_image = None
return None, "Ready for new image", None
def run_inference(model_name, image, num_inference_steps, seed):
global selected_points, original_image, brush_mask
# Fallback: if original_image is not set (e.g. upload callback lagging), try to get it from the input image
if original_image is None and image is not None:
if isinstance(image, dict):
bg = image.get('background')
if bg is None:
bg = image.get('composite')
if bg is not None:
if bg.ndim == 3 and bg.shape[2] == 4:
original_image = bg[:, :, :3]
else:
original_image = bg
elif isinstance(image, np.ndarray):
original_image = image
if model_name[:3] == "---":
return "Please select a model", None
if original_image is None:
return "No source image", None
model_config = MODEL_CONFIGS[model_name]
task = model_config["task"]
# 1. 提取画笔 Mask (仅Matting)
if task == "matting":
# 此时 image 参数是最新的 Editor 状态,包含了用户的涂抹层
if isinstance(image, dict) and 'layers' in image and len(image['layers']) > 0:
# 合并所有 layer (通常只有一个)
# Gradio 的 layer 通常是 RGBA,其中 A 是涂抹的不透明度
# 我们需要把所有有涂抹的地方提取出来
mask_combined = np.zeros(original_image.shape[:2], dtype=np.float32)
for layer in image['layers']:
if layer is not None:
# layer 形状 (H, W, 4)
alpha = layer[:, :, 3] / 255.0
mask_combined = np.maximum(mask_combined, alpha)
if np.max(mask_combined) > 0:
# 膨胀一下 mask
kernel_size = 40
kernel = np.zeros((kernel_size*2+1, kernel_size*2+1))
y, x = np.ogrid[-kernel_size:kernel_size+1, -kernel_size:kernel_size+1]
mask_circle = x**2 + y**2 <= kernel_size**2
kernel[mask_circle] = 1
brush_mask = binary_dilation(mask_combined > 0, structure=kernel).astype(np.float32)
else:
brush_mask = None
else:
brush_mask = None
# 3. 执行推理,使用全局 original_image 保证画质最清晰
result_pil, message = inference(model_name, original_image, selected_points if selected_points else None, num_inference_steps, seed)
if result_pil is None:
return message, None
# 4. 准备输出
input_pil = Image.fromarray(original_image)
input_pil_display = resize_long_side(input_pil, DISPLAY_LONG_SIDE)
return message, (input_pil_display, result_pil)
# ================= 界面构建 =================
def create_gradio_interface():
custom_theme = gr.themes.Base(
primary_hue=gr.themes.colors.emerald,
secondary_hue=gr.themes.colors.stone,
neutral_hue=gr.themes.colors.stone,
font=gr.themes.GoogleFont("Inter"),
).set(
body_background_fill="linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 50%, #0d0d0d 100%)",
block_title_text_color="#e5e5e5",
block_label_text_color="#a3a3a3",
button_primary_background_fill="linear-gradient(135deg, #10b981 0%, #059669 100%)",
button_primary_background_fill_hover="linear-gradient(135deg, #059669 0%, #047857 100%)",
button_secondary_background_fill="#262626",
button_secondary_background_fill_hover="#404040",
slider_color="#10b981",
input_background_fill="#171717",
input_border_color="#262626",
block_background_fill="#171717",
block_border_color="#262626",
)
with gr.Blocks(title="Edit2Perceive", theme=custom_theme, css="""
.gradio-container {
max-width: 100% !important;
background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
min-height: 100vh;
}
.main-header {
text-align: center;
padding: 20px 0 16px 0;
margin-bottom: 16px;
}
.main-title {
font-size: 2rem;
font-weight: 300;
color: #fafafa;
letter-spacing: 8px;
text-transform: uppercase;
margin: 0;
}
.main-title span {
background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subtitle {
color: #525252;
font-size: 0.8rem;
margin-top: 8px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 300;
}
.gr-button-primary {
font-weight: 500 !important;
letter-spacing: 2px !important;
text-transform: uppercase !important;
font-size: 0.75rem !important;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25) !important;
border: none !important;
}
.gr-button-primary:hover {
transform: translateY(-1px) !important;
box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35) !important;
}
.gr-button-secondary {
font-weight: 400 !important;
letter-spacing: 1px !important;
text-transform: uppercase !important;
font-size: 0.75rem !important;
border: 1px solid #404040 !important;
transition: all 0.3s ease !important;
}
.gr-button-secondary:hover {
border-color: #525252 !important;
background: #333333 !important;
}
.gr-accordion {
border: 1px solid #262626 !important;
border-radius: 6px !important;
background: #171717 !important;
}
.gr-accordion > div {
padding: 8px 12px !important;
}
.gr-form {
gap: 8px !important;
}
.gr-box {
gap: 8px !important;
}
.status-box textarea {
font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace !important;
font-size: 0.8rem !important;
letter-spacing: 0.5px !important;
color: #a3a3a3 !important;
background: #0f0f0f !important;
border: 1px solid #262626 !important;
}
.image-editor-container {
border-radius: 8px;
overflow: hidden;
border: 1px solid #262626;
}
footer {
display: none !important;
}
.custom-footer {
text-align: center;
padding: 16px 0;
margin-top: 20px;
border-top: 1px solid #262626;
color: #404040;
font-size: 0.75rem;
letter-spacing: 1px;
}
.custom-footer a {
color: #525252;
text-decoration: none;
transition: color 0.2s ease;
}
.custom-footer a:hover {
color: #10b981;
}
""") as demo:
gr.HTML("""
<div class="main-header">
<h1 class="main-title">Edit<span>2</span>Perceive</h1>
<p class="subtitle">Visual Intelligence · Depth · Normal · Matting</p>
</div>
""")
result_state = gr.State(value=None)
with gr.Row():
with gr.Column(scale=1):
input_image = gr.ImageEditor(
label="Input",
type="numpy",
brush=gr.Brush(colors=["#10b981"], default_size=40),
eraser=gr.Eraser(default_size=40),
height=550,
sources=["upload", "clipboard"],
elem_classes=["image-editor-container"]
)
with gr.Row():
reset_btn = gr.Button("Clear", size="sm", variant="secondary")
paste_btn = gr.Button("Paste", size="sm", variant="secondary")
run_btn = gr.Button("Infer", variant="primary", size="sm")
with gr.Accordion("Configuration", open=True):
model_dropdown = gr.Dropdown(choices=["---Select Model---"] + list(MODEL_CONFIGS.keys()), value="---Select Model---", label="Model")
num_steps = gr.Slider(1, 10, value=4, step=1, label="Steps")
with gr.Column(scale=1):
@gr.render(inputs=result_state)
def show_output(result_data):
if result_data is None:
gr.Image(label="Output", interactive=False, height=550, value=None)
else:
if ImageSlider:
ImageSlider(value=result_data, label="Result", type="pil", position=0.5, height=550)
else:
gr.Image(value=result_data[1], label="Output", height=550)
status_text = gr.Textbox(label="Status", interactive=False, value="Ready", elem_classes=["status-box"])
gr.HTML("""
<div class="custom-footer">
<span class="footer-credit">Presented by</span>
<span class="footer-emoji" title="Watermelon & Coconut">🍉🥥</span>
<span style="margin: 0 16px; color: #333;">·</span>
<span>Powered by Gradio</span>
</div>
<style>
.footer-credit {
color: #525252;
}
.footer-emoji {
font-size: 1.25rem;
margin-left: 6px;
display: inline-block;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-4px); }
}
</style>
""")
# --- 事件绑定修复 ---
# 1. 上传图片: 修改 outputs,移除 input_image,防止死循环
input_image.upload(
on_image_upload,
inputs=[input_image],
outputs=[status_text, result_state] # ❌ 移除了 input_image
)
# 2. 点击打点: 需要更新 input_image 以显示红点,这是安全的,因为不是 upload 事件
input_image.select(
on_image_click,
inputs=[input_image],
outputs=[input_image, status_text]
)
# 3. 清空: 重置所有状态,准备重新上传
reset_btn.click(
reset_selection,
inputs=[input_image],
outputs=[input_image, status_text, result_state]
)
# 4. 粘贴按钮: 使用 JavaScript 触发剪贴板粘贴
paste_btn.click(
None,
None,
None,
js="""
async () => {
try {
const clipboardItems = await navigator.clipboard.read();
for (const item of clipboardItems) {
for (const type of item.types) {
if (type.startsWith('image/')) {
const blob = await item.getType(type);
const file = new File([blob], 'pasted-image.png', { type: type });
const dataTransfer = new DataTransfer();
dataTransfer.items.add(file);
const input = document.querySelector('input[type="file"]');
if (input) {
input.files = dataTransfer.files;
input.dispatchEvent(new Event('change', { bubbles: true }));
}
return;
}
}
}
alert('No image found in clipboard');
} catch (err) {
console.error('Paste failed:', err);
alert('Paste failed. Please use Ctrl+V directly on the image area.');
}
}
"""
)
model_dropdown.change(handle_model_switch, inputs=[model_dropdown], outputs=[status_text])
run_btn.click(
lambda model, img, steps: run_inference(model, img, steps, 42),
inputs=[model_dropdown, input_image, num_steps],
outputs=[status_text, result_state]
)
return demo
if __name__ == "__main__":
initialize_pipeline()
demo = create_gradio_interface()
demo.launch(server_name="0.0.0.0", server_port=7860, share=False) |