"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

October 27, 2022

Rembg Background Removal Tool

 Interesting background removal tool Rembg

from rembg import remove
from rembg.session_factory import new_session
# for the small model
#remove(input, session=new_session("u2netp"))
#remove(input, session=new_session("u2net_human_seg"))
import cv2
from google.colab.patches import cv2_imshow
input_path = '3_Sample.jpg'
output_path = 'output.png'
#input = cv2.imread(input_path)
#output = remove(input)
#cv2.imwrite(output_path, output)
from rembg import remove
from PIL import Image
input = Image.open(input_path)
output = remove(input)
#output.save(output_path)
remove(input, session=new_session("u2net_human_seg"))
output = remove(input)
output.save(output_path)
import cv2
img = cv2.imread('output.png', cv2.IMREAD_UNCHANGED)
cv2_imshow(img)
view raw rembgexample.py hosted with ❤ by GitHub


Keep Exploring!!!

No comments: