Spaces:
Runtime error
Runtime error
File size: 202 Bytes
564df58 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from abc import ABC, abstractmethod
from PIL import Image
class ControlInterface(ABC):
@abstractmethod
def get_control_image(
self,
image: Image,
) -> Image:
pass
|