FastGUI / src /backend /annotators /control_interface.py
clone3's picture
Upload 114 files
e3900a5 verified
raw
history blame contribute delete
214 Bytes
from abc import ABC, abstractmethod
from PIL import Image
class ControlInterface(ABC):
@abstractmethod
def get_control_image(
self,
image: Image,
) -> Image:
pass