fastSD / backend /annotators /control_interface.py
thejagstudio's picture
Upload 61 files
510ee71 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