File size: 181 Bytes
17725c1
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from abc import ABC,abstractmethod
from numpy import ndarray
from PIL import Image

class SengaFiller(ABC):
    @abstractmethod
    def run(image:Image.Image)->ndarray:
        pass