Is there a way to get Inpaint Crop / Inpaint Stitch's 'stitch' to be compatible with batch sizes > 1? I'm using the Repeat Latent Batch node which increases batch size, but haven't figured out a good way to use that with Inpaint Crop / Inpaint Stitch.
Specifically, the 'stitch' output of Inpaint Crop is a python dictionary which has an 'x' key that maps to a list of length 1.
In Inpaint Stitch, stitch['x'] is compared to the batch_size of the inpainted_image, and if they're not equal it throws "Stitch size doesn't match image batch size".
In case anyone runs into the same challenge, a solution is to add an "Image Batch to Image List" node, like in Impact Pack, before sending the inpainted_image to Inpaint Stitch.
Is there a way to get Inpaint Crop / Inpaint Stitch's 'stitch' to be compatible with batch sizes > 1? I'm using the Repeat Latent Batch node which increases batch size, but haven't figured out a good way to use that with Inpaint Crop / Inpaint Stitch.
Specifically, the 'stitch' output of Inpaint Crop is a python dictionary which has an 'x' key that maps to a list of length 1. In Inpaint Stitch, stitch['x'] is compared to the batch_size of the inpainted_image, and if they're not equal it throws "Stitch size doesn't match image batch size".