BEN2 (Background Erase Network) introduces a novel approach to foreground segmentation through its innovative Confidence Guided Matting (CGM) pipeline. The architecture employs a refiner network that targets and...
Fonte do modelo
Descrição da fonte
BEN2 (Background Erase Network) introduces a novel approach to foreground segmentation through its innovative Confidence Guided Matting (CGM) pipeline. The architecture employs a refiner network that targets and processes pixels where the base model exhibits lower confidence levels, resulting in more precise and reliable matting results. This model is built on BEN:
Fontes
1 fonteVerificado 3 de ago.
Artefatos de modelo
3 artefatosTrechos de fonte
2 trechosBEN2 was trained on the DIS5k and our 22K proprietary segmentation dataset. Our enhanced model delivers superior performance in hair matting, 4K processing, object segmentation, and edge refinement. Our Base model is open source. To try the full model through our free web demo or integrate BEN2 into your project with our API:
pip install -e "git+https://github.com/PramaLLC/BEN2.git#egg=ben2"
from ben2 import BEN_Base
from PIL import Image
import torch
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
file = "./image.png" # input image
model = BEN_Base.from_pretrained("PramaLLC/BEN2")
model.to(device).eval()
image = Image.open(file)
foreground = model.inference(image, refine_foreground=False,) #Refine foreground is an extract postprocessing step that increases inference time but can improve matting edges. The default value is False.
foreground.save("./foreground.png")
from ben2 import BEN_Base
from PIL import Image
import torch
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model = BEN_Base.from_pretrained("PramaLLC/BEN2")
model.to(device).eval()
file1 = "./image1.png" # input image1
file2 = "./image2.png" # input image2
image1 = Image.open(file1)
image2 = Image.open(file2)
foregrounds = model.inference([image1, image2]) # We recommend that the batch size not exceed 3 for consumer GPUs as there are minimal inference gains due to our custom batch processing for the MVANet decoding steps.
foregrounds[0].save("./foreground1.png")
foregrounds[1].save("./foreground2.png")
sudo apt update
sudo apt install ffmpeg
from ben2 import BEN_Base
from PIL import Image
import torch
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
video_path = "/path_to_your_video.mp4"# input video
model = BEN_Base.from_pretrained("PramaLLC/BEN2")
model.to(device).eval()
model.segment_video(
video_path= video_path,
output_path="./", # Outputs will be saved as foreground.webm or foreground.mp4. The default value is "./"
fps=0, # If this is set to 0 CV2 will detect the fps in the original video. The default value is 0.
refine_foreground=False, #refine foreground is an extract postprocessing step that increases inference time but can improve matting edges. The default value is False.
batch=1, # We recommended that batch size not exceed 3 for consumer GPUs as there are minimal inference gains. The default value is 1.
print_frames_processed=True, #Informs you what frame is being processed. The default value is True.
webm = False, # This will output an alpha layer video but this defaults to mp4 when webm is false. The default value is False.
rgb_value= (0, 255, 0) # If you do not use webm this will be the RGB value of the resulting background only when webm is False. The default value is a green background (0,255,0).
)
# BEN2 evaluation Model Comparison
RMBG 2.0 did not preserve the DIS 5k validation dataset
Example 1 Example 2 Example 3 Example 6 Example 7
safetensors · 363 MB · SHA-256 ea8b7907176a…3ebb · Hugging Face
--- license: mit pipeline_tag: image-segmentation library_name: ben2 tags: - BEN2 - background-remove - mask-generation - Dichotomous image segmentation - background remove - foreground - background - remove background - pytorch - model_hub_mixin - pytorch_model_hub_mixin - background removal - background-removal --- # BEN2: Background Erase Network [](https://arxiv.org/abs/2501.06230) [](https://github.com/PramaLLC/BEN2/) [](https://backgrounderase.net) ## Overview BEN2 (Background Erase Network) introduces a novel approach to foreground segmentation through its innovative Confidence Guided Matting (CGM) pipeline. The architecture employs a refiner network that targets and processes pixels where the base model exhibits lower confidence levels, resulting in more precise and reliable matting results. This model is built on BEN: [](https://paperswithcode.com/sota/dichotomous-image-segmentation-on-dis-vd?p=ben-using-confidence-guided-matting-for) ## BEN2 access BEN2 was trained on the DIS5k and our 22K proprietary segmentation dataset. Our enhanced model delivers superior performance in hair matting, 4K processing, object segmentation, and edge refinement. Our Base model is open source. To try the full model through our free web demo or integrate BEN2 into your project with our API: - 🌐 [backgrounderase.com](https://backgrounderase.com) ## Contact us - For access to our commercial model email us at sales@backgrounderase.com - Our website: https://backgrounderase.com/ - Follow us on X: https://x.com/PramaResearch/ ## Installation ``` pip install -e "git+https://github.com/PramaLLC/BEN2.git#egg=ben2" ``` ## Quick start code ```python from ben2 import BEN_Base from PIL import Image import torch device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') file = "./image.png" # input image model = BEN_Base.from_pretrained("PramaLLC/BEN2") model.to(device).eval() image = Image.open(file) foreground = model.inference(image, refine_foreground=False,) #Refine foreground is an extract pos...
Source context: 42769 downloads · 242 likes · Pipeline image-segmentation · Library ben2 · Repo PramaLLC/BEN2