Spaces:
Configuration error
Configuration error
import cv2 | |
import numpy as np | |
from PIL import Image | |
from custom_controlnet_aux.util import resize_image_with_pad, common_input_validate, HWC3 | |
class LineartStandardDetector: | |
def __call__(self, input_image=None, guassian_sigma=6.0, intensity_threshold=8, detect_resolution=512, output_type=None, upscale_method="INTER_CUBIC", **kwargs): | |
input_image, output_type = common_input_validate(input_image, output_type, **kwargs) | |
input_image, remove_pad = resize_image_with_pad(input_image, detect_resolution, upscale_method) | |
x = input_image.astype(np.float32) | |
g = cv2.GaussianBlur(x, (0, 0), guassian_sigma) | |
intensity = np.min(g - x, axis=2).clip(0, 255) | |
intensity /= max(16, np.median(intensity[intensity > intensity_threshold])) | |
intensity *= 127 | |
detected_map = intensity.clip(0, 255).astype(np.uint8) | |
detected_map = HWC3(remove_pad(detected_map)) | |
if output_type == "pil": | |
detected_map = Image.fromarray(detected_map) | |
return detected_map |