SengaFiller / backend.py
Mya-Mya
First Commit
17725c1
raw
history blame
181 Bytes
from abc import ABC,abstractmethod
from numpy import ndarray
from PIL import Image
class SengaFiller(ABC):
@abstractmethod
def run(image:Image.Image)->ndarray:
pass