NewApp / backend /annotators /control_interface.py
tejani's picture
Upload 75 files
5b16c73 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