YoBatM's picture
Upload folder using huggingface_hub
99b955f 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