Testing / src /backend /annotators /control_interface.py
Meismaxandmaxisme's picture
Upload 10 files
d66d1e8 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