fastsdtest / backend /annotators /control_interface.py
bilegentile's picture
Upload folder using huggingface_hub
564df58 verified
raw
history blame contribute delete
202 Bytes
from abc import ABC, abstractmethod
from PIL import Image
class ControlInterface(ABC):
@abstractmethod
def get_control_image(
self,
image: Image,
) -> Image:
pass