Views
No views yet
Qwen/Qwen-Image-Edit-2509, and it is mainly used to generate an image of a hug and kiss in the current scene based on two uploaded character pictures and one scene picture, while maintaining consistency between the characters and the scene.For use in ComfyUI.from diffusers import QwenImageEditPipeline
import torch
from PIL import Image
# Load the pipeline
pipeline = QwenImageEditPipeline.from_pretrained("Qwen/Qwen-Image-Edit-2509")
pipeline.to(torch.bfloat16)
pipeline.to("cuda")
# Load trained LoRA weights for in-scene editing
pipeline.load_lora_weights("starsfriday/Qwen-Image-Edit-2509-Passionate-kiss", weight_name="qwen_image_edit_2509_Passionate-kiss.safetensors")
# Load input image
image = Image.open("./result/test.jpg").convert("RGB")
# Define in-scene editing prompt
prompt = "Make a shot in the same scene of the left hand securing the edge of the cutting board while the right hand tilts it, causing the chopped tomatoes to slide off into the pan, camera angle shifts slightly to the left to center more on the pan."
# Generate edited image with enhanced scene understanding
inputs = {
"image": image,
"prompt": prompt,
"generator": torch.manual_seed(12345),
"true_cfg_scale": 4.0,
"negative_prompt": " ",
"num_inference_steps": 50,
}
with torch.inference_mode():
output = pipeline(**inputs)
output_image = output.images[0]
output_image.save("edited_image.png")
保持图3的图片和视角不改变,让图1和图2中的人在图三的马路上站立拥抱着激情亲吻.https://vvicat.com/).Business cooperation is welcome