Views
No views yet
Make the walls smooth, fully plastered and painted [COLOR].
Keep the floor, ceiling, doors, windows and furniture exactly as they are.Make the walls smooth, fully plastered and painted off-white. Keep the floor, ceiling, doors, windows and furniture exactly as they are.Make the walls smooth, fully plastered and painted sage green. Keep the floor, ceiling, doors, windows and furniture exactly as they are.Make the walls smooth, fully plastered and painted warm beige. Keep the floor, ceiling, doors, windows and furniture exactly as they are.1from diffusers import FlowMatchEulerDiscreteScheduler
2from qwenimage.pipeline_qwenimage_edit_plus import QwenImageEditPlusPipeline
3from qwenimage.transformer_qwenimage import QwenImageTransformer2DModel
4import torch
5from PIL import Image
6
7dtype = torch.bfloat16
8device = "cuda"
9
10pipe = QwenImageEditPlusPipeline.from_pretrained(
11 "RegalRinse/roomviz-wall-editor",
12 transformer=QwenImageTransformer2DModel.from_pretrained(
13 "RegalRinse/roomviz-transformer",
14 torch_dtype=dtype,
15 device_map="cuda"
16 ),
17 torch_dtype=dtype
18).to(device)
19
20image = Image.open("your_room.jpg").convert("RGB")
21
22result = pipe(
23 image=[image],
24 prompt="Make the walls smooth, fully plastered and painted light beige. Keep the floor, ceiling, doors, windows and furniture exactly as they are.",
25 negative_prompt="worst quality, low quality, blurry, unrealistic",
26 height=1024,
27 width=1024,
28 num_inference_steps=4,
29 true_cfg_scale=3.5,
30).images
31
32result.save("output.png")| Property | Value |
|---|---|
| Base Model | Qwen/Qwen-Image-Edit-2511 |
| Transformer | RegalRinse/roomviz-transformer (Lightning-distilled, 4-step) |
| Inference Steps | 4 (Lightning) |
| Recommended CFG Scale | 3.5 |
| Input Resolution | Up to 1024×1024 |
| Dtype | bfloat16 |
| Task | Text-guided image-to-image editing |
| Domain | Indian under-construction rooms |