Sunday01's picture
up
9dce458
raw
history blame contribute delete
263 Bytes
import numpy as np
from .common import CommonInpainter
class OriginalInpainter(CommonInpainter):
async def _inpaint(self, image: np.ndarray, mask: np.ndarray, inpainting_size: int = 1024, verbose: bool = False) -> np.ndarray:
return np.copy(image)