2023-03-26 07:39:09 +02:00
|
|
|
import os
|
2023-03-22 05:57:18 +01:00
|
|
|
import cv2
|
|
|
|
import numpy as np
|
2023-03-26 07:39:09 +02:00
|
|
|
from torch.hub import get_dir
|
2023-03-22 05:57:18 +01:00
|
|
|
|
2024-01-05 08:19:23 +01:00
|
|
|
from iopaint.plugins.base_plugin import BasePlugin
|
|
|
|
from iopaint.schema import RunPluginRequest
|
2023-03-22 05:57:18 +01:00
|
|
|
|
2023-03-26 06:37:58 +02:00
|
|
|
|
|
|
|
class RemoveBG(BasePlugin):
|
2023-03-22 05:57:18 +01:00
|
|
|
name = "RemoveBG"
|
2024-01-02 15:32:40 +01:00
|
|
|
support_gen_mask = True
|
|
|
|
support_gen_image = True
|
2023-03-22 05:57:18 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
2023-03-26 06:37:58 +02:00
|
|
|
super().__init__()
|
2023-03-22 05:57:18 +01:00
|
|
|
from rembg import new_session
|
|
|
|
|
2023-03-26 07:39:09 +02:00
|
|
|
hub_dir = get_dir()
|
|
|
|
model_dir = os.path.join(hub_dir, "checkpoints")
|
|
|
|
os.environ["U2NET_HOME"] = model_dir
|
|
|
|
|
2023-03-22 05:57:18 +01:00
|
|
|
self.session = new_session(model_name="u2net")
|
|
|
|
|
2024-01-02 15:32:40 +01:00
|
|
|
def gen_image(self, rgb_np_img, req: RunPluginRequest) -> np.ndarray:
|
2023-03-22 05:57:18 +01:00
|
|
|
from rembg import remove
|
|
|
|
|
2024-01-02 15:32:40 +01:00
|
|
|
bgr_np_img = cv2.cvtColor(rgb_np_img, cv2.COLOR_RGB2BGR)
|
|
|
|
|
2023-03-22 05:57:18 +01:00
|
|
|
# return BGRA image
|
|
|
|
output = remove(bgr_np_img, session=self.session)
|
2023-05-09 13:07:12 +02:00
|
|
|
return cv2.cvtColor(output, cv2.COLOR_BGRA2RGBA)
|
2023-03-26 06:37:58 +02:00
|
|
|
|
2024-01-02 15:32:40 +01:00
|
|
|
def gen_mask(self, rgb_np_img, req: RunPluginRequest) -> np.ndarray:
|
|
|
|
from rembg import remove
|
|
|
|
|
|
|
|
bgr_np_img = cv2.cvtColor(rgb_np_img, cv2.COLOR_RGB2BGR)
|
|
|
|
|
|
|
|
# return BGR image, 255 means foreground, 0 means background
|
|
|
|
output = remove(bgr_np_img, session=self.session, only_mask=True)
|
|
|
|
return output
|
|
|
|
|
2023-03-26 06:37:58 +02:00
|
|
|
def check_dep(self):
|
|
|
|
try:
|
|
|
|
import rembg
|
|
|
|
except ImportError:
|
|
|
|
return (
|
|
|
|
"RemoveBG is not installed, please install it first. pip install rembg"
|
|
|
|
)
|