SengaFiller / dummysengafiller.py
Mya-Mya
First Commit
17725c1
raw
history blame
203 Bytes
from backend import SengaFiller
from numpy import ndarray,asarray
from PIL import Image
class DummySengaFiller(SengaFiller):
def run(self,image: Image.Image) -> ndarray:
return asarray(image)