Make LoadImage and LoadImageMask return masks in batch format.

This commit is contained in:
comfyanonymous 2023-09-26 02:56:40 -04:00
parent 1d36dfb9fe
commit 9546a798fb

View File

@ -1369,7 +1369,7 @@ class LoadImage:
mask = 1. - torch.from_numpy(mask) mask = 1. - torch.from_numpy(mask)
else: else:
mask = torch.zeros((64,64), dtype=torch.float32, device="cpu") mask = torch.zeros((64,64), dtype=torch.float32, device="cpu")
return (image, mask) return (image, mask.unsqueeze(0))
@classmethod @classmethod
def IS_CHANGED(s, image): def IS_CHANGED(s, image):
@ -1416,7 +1416,7 @@ class LoadImageMask:
mask = 1. - mask mask = 1. - mask
else: else:
mask = torch.zeros((64,64), dtype=torch.float32, device="cpu") mask = torch.zeros((64,64), dtype=torch.float32, device="cpu")
return (mask,) return (mask.unsqueeze(0),)
@classmethod @classmethod
def IS_CHANGED(s, image, channel): def IS_CHANGED(s, image, channel):