Spaces:
Running on Zero
Running on Zero
File size: 16,754 Bytes
b701455 | 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 | """Automatic face/body enhancement processor for LightDiffusion-Next.
This processor uses detection models to identify faces and bodies,
then applies targeted inpainting/enhancement to those regions.
"""
import logging
import random
import re
import time
from typing import TYPE_CHECKING, Any, Optional, Callable
import numpy as np
import torch
if TYPE_CHECKING:
from src.Core.PipelineContext import PipelineContext
from src.Core.AbstractModel import AbstractModel
class Adetailer:
"""Automatic face and body detailing processor.
Uses YOLO detection and SAM segmentation to identify regions
of interest, then applies targeted inpainting enhancement.
"""
# Default settings
DEFAULT_GUIDE_SIZE = 512
DEFAULT_MAX_SIZE = 768
DEFAULT_STEPS = 20
DEFAULT_CFG = 6.5
DEFAULT_DENOISE = 0.5
DEFAULT_SCHEDULER = "karras"
DEFAULT_POSITIVE_PROMPT = "royal, detailed, magnificient, beautiful, seducing"
@classmethod
def _runtime_profile(cls, ctx: "PipelineContext", model: "AbstractModel") -> dict[str, Any]:
is_flux = getattr(model.capabilities, "is_flux", False)
is_flux2 = getattr(model.capabilities, "is_flux2", False)
is_sdxl = getattr(model.capabilities, "uses_dual_clip", False)
profile = {
"is_flux": is_flux,
"is_flux2": is_flux2,
"is_sdxl": is_sdxl,
"guide_size": cls.DEFAULT_GUIDE_SIZE,
"max_size": cls.DEFAULT_MAX_SIZE,
"steps": cls.DEFAULT_STEPS,
"cfg": cls.DEFAULT_CFG,
"denoise": cls.DEFAULT_DENOISE,
"scheduler": cls.DEFAULT_SCHEDULER,
"body_crop_factor": 2.0,
"face_crop_factor": 2.0,
}
if is_sdxl:
profile.update(
guide_size=512,
max_size=768,
steps=8,
cfg=cls.DEFAULT_CFG,
denoise=0.35,
scheduler=ctx.sampling.scheduler,
body_crop_factor=1.4,
face_crop_factor=1.6,
)
elif is_flux2:
profile.update(steps=6, cfg=1.0)
elif is_flux:
profile.update(steps=20, cfg=1.0)
return profile
@classmethod
def apply(
cls,
image: torch.Tensor,
ctx: "PipelineContext",
model: "AbstractModel",
positive: Any = None,
negative: Any = None,
callback: Optional[Callable] = None,
) -> tuple[torch.Tensor, list[dict]]:
"""Apply automatic face and body enhancement.
Args:
image: Input image tensor [B, H, W, C] or [H, W, C]
ctx: Pipeline context with configuration
model: The loaded model instance
positive: Optional positive conditioning (uses default if not provided)
negative: Negative conditioning from original generation
callback: Optional callback for live previews
Returns:
Tuple of (enhanced_image, list_of_saved_intermediate_images_metadata)
"""
logger = logging.getLogger(__name__)
saved_images = []
try:
# Ensure image has batch dimension
if image.dim() == 3:
image = image.unsqueeze(0)
# Import required modules
from src.AutoDetailer import SAM, SEGS, ADetailer, bbox
from src.clip import Clip
from src.FileManaging import ImageSaver
from src.AutoHDR import ahdr
# Load detection and segmentation models
samloader = SAM.SAMLoader()
sam_model = samloader.load_model(
model_name="sam_vit_b_01ec64.pth",
device_mode="AUTO"
)[0]
# Load YOLO detector for person/body
detector_provider = bbox.UltralyticsDetectorProvider()
body_detector = detector_provider.doit(model_name="person_yolov8m-seg.pt")[0]
# Use original positive conditioning if provided (preserves SDXL pooled_output
# and semantic context). Otherwise, re-encode from user's actual prompt.
cliptextencode = Clip.CLIPTextEncode()
if positive is not None:
adetailer_positive = positive
else:
# Fall back to user's prompt from context for semantic consistency
prompt_text = ctx.prompt if isinstance(ctx.prompt, str) else str(ctx.prompt)
adetailer_positive = cliptextencode.encode(
text=prompt_text,
clip=model.clip,
)[0]
# Initialize processors
bbox_detector = bbox.BboxDetectorForEach()
sam_detector = SAM.SAMDetectorCombined()
segs_mask = SEGS.SegsBitwiseAndMask()
detailer = ADetailer.DetailerForEachTest()
saveimage = ImageSaver.SaveImage()
hdr = ahdr.HDREffects()
profile = cls._runtime_profile(ctx, model)
# ===== BODY PASS =====
# Detect body regions
body_segs = bbox_detector.doit(
threshold=0.5,
dilation=10,
crop_factor=profile["body_crop_factor"],
drop_size=10,
labels="all",
bbox_detector=body_detector,
image=image,
)
# Apply SAM for precise segmentation
sam_result = sam_detector.doit(
detection_hint="center-1",
dilation=0,
threshold=0.93,
bbox_expansion=0,
mask_hint_threshold=0.7,
mask_hint_use_negative="False",
sam_model=sam_model,
segs=body_segs,
image=image,
)
if sam_result is None:
logger.info("Adetailer: No body regions detected")
return image[0] if image.shape[0] == 1 else image, saved_images
# Combine segmentation masks
combined_segs = segs_mask.doit(
segs=body_segs,
mask=sam_result[0],
)
# Apply body enhancement
body_seed = random.randint(1, 2**63 - 1)
body_start = time.perf_counter()
body_result = detailer.doit(
guide_size=profile["guide_size"],
guide_size_for=False,
max_size=profile["max_size"],
seed=body_seed,
steps=profile["steps"],
cfg=profile["cfg"],
sampler_name=ctx.sampling.sampler,
scheduler=profile["scheduler"],
denoise=profile["denoise"],
feather=5,
noise_mask=True,
force_inpaint=True,
wildcard="",
cycle=1,
inpaint_model=False,
noise_mask_feather=0,
image=image,
segs=combined_segs[0],
model=model.model,
clip=model.clip,
vae=model.vae,
positive=adetailer_positive,
negative=negative,
pipeline=True,
callback=callback,
)
logger.info(
"Adetailer body pass: guide=%s max=%s steps=%s scheduler=%s denoise=%s elapsed=%.2fs",
profile["guide_size"],
profile["max_size"],
profile["steps"],
profile["scheduler"],
profile["denoise"],
time.perf_counter() - body_start,
)
# Extract enhanced body image
body_image = body_result[0]
body_seed_str = cls._extract_seed(body_result, body_seed)
# Apply HDR if enabled
if ctx.generation.autohdr:
try:
hdr_result = hdr.apply_hdr2(body_image)
body_image = hdr_result[0] if isinstance(hdr_result, (tuple, list)) else hdr_result
except Exception:
pass
# Save body-enhanced image
body_meta = cls._build_metadata(ctx, body_seed_str, "body")
# Update meta with actual steps/cfg used
body_meta["steps"] = str(profile["steps"])
body_meta["cfg"] = str(profile["cfg"])
saved_body = saveimage.save_images(
filename_prefix="LD-body",
images=body_image,
prompt=ctx.prompt if isinstance(ctx.prompt, str) else str(ctx.prompt),
extra_pnginfo=body_meta,
)
saved_images.append(saved_body)
# ===== FACE PASS =====
# Check for interrupt before starting the next pass
from src.user import app_instance
app = getattr(app_instance, "app", None)
if app and getattr(app, "interrupt_flag", False):
logger.info("Adetailer: Interrupt requested, skipping Face pass")
return body_image[0] if body_image.shape[0] == 1 else body_image, saved_images
# Load face detector
face_detector = detector_provider.doit(model_name="face_yolov9c.pt")[0]
# Detect face regions on the body-enhanced image
face_segs = bbox_detector.doit(
threshold=0.5,
dilation=10,
crop_factor=profile["face_crop_factor"],
drop_size=10,
labels="all",
bbox_detector=face_detector,
image=body_image,
)
# Apply SAM for face segmentation
face_sam_result = sam_detector.doit(
detection_hint="center-1",
dilation=0,
threshold=0.93,
bbox_expansion=0,
mask_hint_threshold=0.7,
mask_hint_use_negative="False",
sam_model=sam_model,
segs=face_segs,
image=body_image,
)
if face_sam_result is None:
logger.info("Adetailer: No face regions detected")
return body_image[0] if body_image.shape[0] == 1 else body_image, saved_images
# Combine face segmentation masks
face_combined_segs = segs_mask.doit(
segs=face_segs,
mask=face_sam_result[0],
)
# Apply face enhancement
face_seed = random.randint(1, 2**63 - 1)
face_start = time.perf_counter()
face_result = detailer.doit(
guide_size=profile["guide_size"],
guide_size_for=False,
max_size=profile["max_size"],
seed=face_seed,
steps=profile["steps"],
cfg=profile["cfg"],
sampler_name=ctx.sampling.sampler,
scheduler=profile["scheduler"],
denoise=profile["denoise"],
feather=5,
noise_mask=True,
force_inpaint=True,
wildcard="",
cycle=1,
inpaint_model=False,
noise_mask_feather=0,
image=body_image,
segs=face_combined_segs[0],
model=model.model,
clip=model.clip,
vae=model.vae,
positive=adetailer_positive,
negative=negative,
pipeline=True,
callback=callback,
)
logger.info(
"Adetailer face pass: guide=%s max=%s steps=%s scheduler=%s denoise=%s elapsed=%.2fs",
profile["guide_size"],
profile["max_size"],
profile["steps"],
profile["scheduler"],
profile["denoise"],
time.perf_counter() - face_start,
)
# Extract final enhanced image
final_image = face_result[0]
face_seed_str = cls._extract_seed(face_result, face_seed)
# Apply HDR if enabled
if ctx.generation.autohdr:
try:
hdr_result = hdr.apply_hdr2(final_image)
final_image = hdr_result[0] if isinstance(hdr_result, (tuple, list)) else hdr_result
except Exception:
pass
# Save face-enhanced (final) image
face_meta = cls._build_metadata(ctx, face_seed_str, "head")
face_meta["steps"] = str(profile["steps"])
face_meta["cfg"] = str(profile["cfg"])
saved_face = saveimage.save_images(
filename_prefix="LD-head",
images=final_image,
prompt=ctx.prompt if isinstance(ctx.prompt, str) else str(ctx.prompt),
extra_pnginfo=face_meta,
)
saved_images.append(saved_face)
logger.info("Adetailer: completed body and face enhancement")
# Return final image (remove batch dim if it was added)
return final_image[0] if final_image.shape[0] == 1 else final_image, saved_images
except Exception as e:
logger.exception(f"Adetailer failed: {e}")
# Return original image on failure
return image[0] if image.dim() == 4 and image.shape[0] == 1 else image, saved_images
@classmethod
def _extract_seed(cls, result: Any, fallback_seed: int) -> str:
"""Extract seed from detailer result safely.
Args:
result: Result from detailer (may be tuple with seed)
fallback_seed: Seed to use if extraction fails
Returns:
String representation of the seed
"""
try:
if isinstance(result, (list, tuple)) and len(result) > 1:
candidate = result[1]
if isinstance(candidate, int):
return str(candidate)
if isinstance(candidate, float) and float(candidate).is_integer():
return str(int(candidate))
if isinstance(candidate, str):
s = candidate.strip()
if re.fullmatch(r"-?\d+", s):
return s
m = re.search(r"\d{4,}", s)
if m:
return m.group(0)
if isinstance(candidate, np.ndarray) and candidate.size == 1:
return str(int(candidate.item()))
if isinstance(candidate, torch.Tensor) and candidate.numel() == 1:
return str(int(candidate.item()))
except Exception:
pass
return str(fallback_seed)
@classmethod
def _build_metadata(
cls,
ctx: "PipelineContext",
seed: str,
pass_type: str,
) -> dict:
"""Build metadata dictionary for saved images.
Args:
ctx: Pipeline context
seed: Seed used for this pass
pass_type: Type of enhancement pass ('body' or 'head')
Returns:
Metadata dictionary
"""
return {
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()),
"prompt": ctx.prompt if isinstance(ctx.prompt, str) else str(ctx.prompt),
"negative_prompt": ctx.negative_prompt if isinstance(ctx.negative_prompt, str) else str(ctx.negative_prompt),
"seed": seed,
"sampler": ctx.sampling.sampler,
"steps": str(cls.DEFAULT_STEPS),
"cfg": str(cls.DEFAULT_CFG),
"scheduler": cls.DEFAULT_SCHEDULER,
"denoise": str(cls.DEFAULT_DENOISE),
"width": str(ctx.generation.width),
"height": str(ctx.generation.height),
"batch_size": str(1),
"adetailer": "True",
"adetailer_pass": pass_type,
}
@classmethod
def is_enabled(cls, ctx: "PipelineContext") -> bool:
"""Check if Adetailer should be applied based on context.
Args:
ctx: Pipeline context
Returns:
True if Adetailer should be applied
"""
return ctx.features.adetailer
|