|
import cv2 |
|
import numpy as np |
|
|
|
import diffusers |
|
from diffusers.models import ControlNetModel |
|
from diffusers.pipelines.controlnet.multicontrolnet import MultiControlNetModel |
|
from diffusers.utils import load_image |
|
|
|
import torch |
|
import torch.nn.functional as F |
|
|
|
|
|
import PIL |
|
from PIL import Image |
|
|
|
|
|
|
|
|
|
from insightface.app import FaceAnalysis |
|
from pipeline_stable_diffusion_xl_instantid_full import StableDiffusionXLInstantIDPipeline, draw_kps |
|
from controlnet_aux import OpenposeDetector |
|
|
|
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') |
|
if device.type != 'cuda': |
|
raise ValueError("Se requiere ejecutar en GPU") |
|
|
|
dtype = torch.float16 if str(device).__contains__("cuda") else torch.float32 |
|
|
|
class EndpointHandler(): |
|
def __init__(self, model_dir): |
|
print("Loading model from", model_dir) |
|
|
|
face_adapter = f"./checkpoints/ip-adapter.bin" |
|
controlnet_path = f"./checkpoints/ControlNetModel" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.controlnet_identitynet = ControlNetModel.from_pretrained( |
|
controlnet_path, torch_dtype=dtype |
|
) |
|
|
|
pretrained_model_name_or_path = "wangqixun/YamerMIX_v8" |
|
|
|
self.pipe = StableDiffusionXLInstantIDPipeline.from_pretrained( |
|
pretrained_model_name_or_path, |
|
controlnet=[self.controlnet_identitynet], |
|
torch_dtype=dtype, |
|
safety_checker=None, |
|
feature_extractor=None, |
|
).to(device) |
|
|
|
|
|
self.pipe.scheduler = diffusers.EulerDiscreteScheduler.from_config( |
|
self.pipe.scheduler.config |
|
) |
|
|
|
|
|
self.pipe.load_lora_weights("latent-consistency/lcm-lora-sdxl") |
|
self.pipe.disable_lora() |
|
|
|
self.pipe.cuda() |
|
self.pipe.load_ip_adapter_instantid(face_adapter) |
|
self.pipe.image_proj_model.to("cuda") |
|
self.pipe.unet.to("cuda") |
|
self.pipe.scheduler = diffusers.LCMScheduler.from_config(self.pipe.scheduler.config) |
|
self.pipe.enable_lora() |
|
|
|
|
|
controlnet_pose_model = "thibaud/controlnet-openpose-sdxl-1.0" |
|
|
|
|
|
|
|
controlnet_pose = ControlNetModel.from_pretrained( |
|
controlnet_pose_model, torch_dtype=dtype |
|
).to(device) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
openpose = OpenposeDetector.from_pretrained("lllyasviel/ControlNet") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.controlnet_map = { |
|
"pose": controlnet_pose, |
|
|
|
|
|
} |
|
|
|
self.controlnet_map_fn = { |
|
"pose": openpose, |
|
|
|
|
|
} |
|
|
|
self.app = FaceAnalysis(name="buffalo_l", root="./", providers=["CPUExecutionProvider"]) |
|
self.app.prepare(ctx_id=0, det_size=(640, 640)) |
|
self.generator = torch.Generator(device=device.type).manual_seed(3) |
|
|
|
|
|
|
|
|
|
self.my_controlnet_selection = ["pose"] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __call__(self, data): |
|
|
|
|
|
default_prompt = "watercolor painting, {prompt}. vibrant, beautiful, painterly, detailed, textural, artistic" |
|
default_negative_prompt = "(lowres, low quality, worst quality:1.2), (text:1.2), watermark, anime, photorealistic, 35mm film, deformed, glitch, low contrast, noisy" |
|
|
|
|
|
prompt_input = data.pop("inputs", "a man") |
|
prompt=default_prompt.replace("{prompt}", prompt_input) |
|
num_inference_steps = data.pop("num_inference_steps", 5) |
|
guidance_scale = data.pop("guidance_scale", 1.5) |
|
negative_prompt = data.pop("negative_prompt", default_negative_prompt) |
|
face_image_path = data.pop("face_image_path", "https://i.ibb.co/5Rsrd2d/kaifu-resize-1.png") |
|
pose_image_path = data.pop("pose_image_path", "https://i.ibb.co/9bP9tMb/pose-2-1.jpg") |
|
|
|
adapter_strength_ratio = 0.8 |
|
|
|
|
|
|
|
|
|
def convert_from_cv2_to_image(img: np.ndarray) -> Image: |
|
return Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) |
|
|
|
def convert_from_image_to_cv2(img: Image) -> np.ndarray: |
|
return cv2.cvtColor(np.array(img), cv2.COLOR_RGB2BGR) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
face_image = load_image(face_image_path) |
|
face_image_cv2 = convert_from_image_to_cv2(face_image) |
|
height, width, _ = face_image_cv2.shape |
|
|
|
|
|
face_info = self.app.get(face_image_cv2) |
|
|
|
|
|
|
|
|
|
|
|
|
|
face_info = sorted( |
|
face_info, |
|
key=lambda x: (x["bbox"][2] - x["bbox"][0]) * x["bbox"][3] - x["bbox"][1], |
|
)[ |
|
-1 |
|
] |
|
|
|
face_emb = face_info["embedding"] |
|
face_kps = draw_kps(convert_from_cv2_to_image(face_image_cv2), face_info["kps"]) |
|
img_controlnet = face_image |
|
if pose_image_path is not None: |
|
pose_image = load_image(pose_image_path) |
|
img_controlnet = pose_image |
|
pose_image_cv2 = convert_from_image_to_cv2(pose_image) |
|
|
|
face_info = self.app.get(pose_image_cv2) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
face_info = face_info[-1] |
|
face_kps = draw_kps(pose_image, face_info["kps"]) |
|
|
|
width, height = face_kps.size |
|
|
|
control_mask = np.zeros([height, width, 3]) |
|
x1, y1, x2, y2 = face_info["bbox"] |
|
x1, y1, x2, y2 = int(x1), int(y1), int(x2), int(y2) |
|
control_mask[y1:y2, x1:x2] = 255 |
|
control_mask = Image.fromarray(control_mask.astype(np.uint8)) |
|
|
|
control_images = [face_kps] + [ |
|
self.controlnet_map_fn[s](img_controlnet).resize((width, height)) |
|
for s in self.my_controlnet_selection |
|
] |
|
|
|
print("Start inference...") |
|
|
|
self.pipe.set_ip_adapter_scale(adapter_strength_ratio) |
|
images = self.pipe( |
|
prompt=prompt, |
|
negative_prompt=negative_prompt, |
|
image_embeds=face_emb, |
|
image=control_images, |
|
control_mask=control_mask, |
|
controlnet_conditioning_scale=self.control_scales, |
|
num_inference_steps=num_inference_steps, |
|
guidance_scale=guidance_scale, |
|
height=height, |
|
width=width, |
|
generator=self.generator, |
|
).images |
|
|
|
return images[0] |