from abc import ABC,abstractmethod from numpy import ndarray from PIL import Image class SengaFiller(ABC): @abstractmethod def run(image:Image.Image)->ndarray: pass