Fix ImageBatch with different channel count. (#10815)

This commit is contained in:
comfyanonymous 2025-11-20 12:08:03 -08:00 committed by GitHub
parent 87b0359392
commit f5e66d5e47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1852,6 +1852,10 @@ class ImageBatch:
CATEGORY = "image"
def batch(self, image1, image2):
if image1.shape[-1] != image2.shape[-1]:
channels = min(image1.shape[-1], image2.shape[-1])
image1 = image1[..., :channels]
image2 = image2[..., :channels]
if image1.shape[1:] != image2.shape[1:]:
image2 = comfy.utils.common_upscale(image2.movedim(-1,1), image1.shape[2], image1.shape[1], "bilinear", "center").movedim(1,-1)
s = torch.cat((image1, image2), dim=0)