mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-30 10:57:23 +08:00
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Waiting to run
Execution Tests / test (macos-latest) (push) Waiting to run
Execution Tests / test (ubuntu-latest) (push) Waiting to run
Execution Tests / test (windows-latest) (push) Waiting to run
Test server launches without errors / test (push) Waiting to run
Unit Tests / test (macos-latest) (push) Waiting to run
Unit Tests / test (ubuntu-latest) (push) Waiting to run
Unit Tests / test (windows-2022) (push) Waiting to run
* Move dataset/text nodes to text category * Rename category utils into utilities * Rename category api node into partner * Move categories conditioning, latent, sampling, model_patches, training, etc. under model category * Dispatch partner nodes in to 3d, audio, image, text, video categories * Move PreviewAny node to utilities category
62 lines
2.3 KiB
Python
62 lines
2.3 KiB
Python
import folder_paths
|
|
from typing_extensions import override
|
|
from comfy_api.latest import ComfyExtension, IO
|
|
from comfy.bg_removal_model import load
|
|
|
|
|
|
class LoadBackgroundRemovalModel(IO.ComfyNode):
|
|
@classmethod
|
|
def define_schema(cls):
|
|
files = folder_paths.get_filename_list("background_removal")
|
|
return IO.Schema(
|
|
node_id="LoadBackgroundRemovalModel",
|
|
display_name="Load Background Removal Model",
|
|
category="model/loaders",
|
|
inputs=[
|
|
IO.Combo.Input("bg_removal_name", options=sorted(files), tooltip="The model used to remove backgrounds from images"),
|
|
],
|
|
outputs=[
|
|
IO.BackgroundRemoval.Output("bg_model")
|
|
]
|
|
)
|
|
@classmethod
|
|
def execute(cls, bg_removal_name):
|
|
path = folder_paths.get_full_path_or_raise("background_removal", bg_removal_name)
|
|
bg = load(path)
|
|
if bg is None:
|
|
raise RuntimeError("ERROR: background model file is invalid and does not contain a valid background removal model.")
|
|
return IO.NodeOutput(bg)
|
|
|
|
class RemoveBackground(IO.ComfyNode):
|
|
@classmethod
|
|
def define_schema(cls):
|
|
return IO.Schema(
|
|
node_id="RemoveBackground",
|
|
display_name="Remove Background",
|
|
category="image/background removal",
|
|
description="Generates a foreground mask to remove the background from an image using a background removal model.",
|
|
inputs=[
|
|
IO.Image.Input("image", tooltip="Input image to remove the background from"),
|
|
IO.BackgroundRemoval.Input("bg_removal_model", tooltip="Background removal model used to generate the mask")
|
|
],
|
|
outputs=[
|
|
IO.Mask.Output("mask", tooltip="Generated foreground mask")
|
|
]
|
|
)
|
|
@classmethod
|
|
def execute(cls, image, bg_removal_model):
|
|
mask = bg_removal_model.encode_image(image)
|
|
return IO.NodeOutput(mask)
|
|
|
|
class BackgroundRemovalExtension(ComfyExtension):
|
|
@override
|
|
async def get_node_list(self) -> list[type[IO.ComfyNode]]:
|
|
return [
|
|
LoadBackgroundRemovalModel,
|
|
RemoveBackground
|
|
]
|
|
|
|
|
|
async def comfy_entrypoint() -> BackgroundRemovalExtension:
|
|
return BackgroundRemovalExtension()
|