jaesimio

Results 4 comments of jaesimio

@kalle07, Plaese check [this](https://github.com/glucauze/sd-webui-faceswaplab/issues/178#issuecomment-2007669884)

@kalle07, You need to check the indentation and `apply_mask()` function's return value. ```python if p.overlay_images and batch_index < len(p.overlay_images): selected_overlay = p.overlay_images[batch_index] img, _ = processing.apply_overlay(img, p.paste_to, selected_overlay) else: return...

@kalle07 Try this code and if that doesn't work, it's probably a nvidia driver issue. ```python if p.overlay_images and batch_index < len(p.overlay_images): selected_overlay = p.overlay_images[batch_index] img, _ = processing.apply_overlay(img, p.paste_to,...

@antorio @ncandelier, @jet3004, The return value of `processing.apply_overlay()` differs between `sd-webui:v1.7.0` and `sd-webui:v1.8.0`. Therefore, we need to make the following changes: ```python if p.overlay_images and batch_index < len(p.overlay_images): selected_overlay =...