fastsdcpu / src /backend /annotators /control_interface.py
rupeshs's picture
Updated to latest FastSD
c7f95a6
raw
history blame
202 Bytes
from abc import ABC, abstractmethod
from PIL import Image
class ControlInterface(ABC):
@abstractmethod
def get_control_image(
self,
image: Image,
) -> Image:
pass