34 lines
847 B
Python
34 lines
847 B
Python
import cv2
|
|
import numpy as np
|
|
|
|
from lama_cleaner.plugins.base_plugin import BasePlugin
|
|
|
|
|
|
class RemoveBG(BasePlugin):
|
|
name = "RemoveBG"
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
from rembg import new_session
|
|
|
|
self.session = new_session(model_name="u2net")
|
|
|
|
def __call__(self, rgb_np_img, files, form):
|
|
bgr_np_img = cv2.cvtColor(rgb_np_img, cv2.COLOR_RGB2BGR)
|
|
return self.forward(bgr_np_img)
|
|
|
|
def forward(self, bgr_np_img) -> np.ndarray:
|
|
from rembg import remove
|
|
|
|
# return BGRA image
|
|
output = remove(bgr_np_img, session=self.session)
|
|
return output
|
|
|
|
def check_dep(self):
|
|
try:
|
|
import rembg
|
|
except ImportError:
|
|
return (
|
|
"RemoveBG is not installed, please install it first. pip install rembg"
|
|
)
|