mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-10 17:22:36 +08:00
Merge branch 'master' into fix/api-nodes/detect-internet-fail
This commit is contained in:
commit
8d0c09003a
@ -47,7 +47,7 @@ class BackgroundRemovalModel():
|
|||||||
out = self.model(pixel_values=pixel_values)
|
out = self.model(pixel_values=pixel_values)
|
||||||
out = torch.nn.functional.interpolate(out, size=(H, W), mode="bicubic", antialias=False)
|
out = torch.nn.functional.interpolate(out, size=(H, W), mode="bicubic", antialias=False)
|
||||||
|
|
||||||
mask = out.sigmoid()
|
mask = out.sigmoid().to(device=comfy.model_management.intermediate_device(), dtype=comfy.model_management.intermediate_dtype())
|
||||||
if mask.ndim == 3:
|
if mask.ndim == 3:
|
||||||
mask = mask.unsqueeze(0)
|
mask = mask.unsqueeze(0)
|
||||||
if mask.shape[1] != 1:
|
if mask.shape[1] != 1:
|
||||||
|
|||||||
@ -203,7 +203,7 @@ class JoinImageWithAlpha(io.ComfyNode):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def execute(cls, image: torch.Tensor, alpha: torch.Tensor) -> io.NodeOutput:
|
def execute(cls, image: torch.Tensor, alpha: torch.Tensor) -> io.NodeOutput:
|
||||||
batch_size = max(len(image), len(alpha))
|
batch_size = max(len(image), len(alpha))
|
||||||
alpha = 1.0 - resize_mask(alpha, image.shape[1:])
|
alpha = 1.0 - resize_mask(alpha.to(image), image.shape[1:])
|
||||||
alpha = comfy.utils.repeat_to_batch_size(alpha, batch_size)
|
alpha = comfy.utils.repeat_to_batch_size(alpha, batch_size)
|
||||||
image = comfy.utils.repeat_to_batch_size(image, batch_size)
|
image = comfy.utils.repeat_to_batch_size(image, batch_size)
|
||||||
return io.NodeOutput(torch.cat((image[..., :3], alpha.unsqueeze(-1)), dim=-1))
|
return io.NodeOutput(torch.cat((image[..., :3], alpha.unsqueeze(-1)), dim=-1))
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user