Spaces:
Paused
Paused
File size: 202 Bytes
99b955f |
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
|