Mikubill / sd-webui-controlnet

WebUI extension for ControlNet
GNU General Public License v3.0
17.1k stars 1.96k forks source link

[Feature request] In the img2img API, I want to reuse the ControlNet image of the IP-Adapter, similar to OpenPose. Is that feasible? #3063

Closed phucbienvan closed 4 weeks ago

phucbienvan commented 1 month ago

In the img2img API, I want to reuse the ControlNet image of the IP-Adapter, similar to OpenPose. Is that feasible? `{ "module": "none", "model": "ip-adapter-faceid-plusv2_sd15 [6e14fc1a]", "control_mode": "Balanced", "resize_mode": "Crop and Resize", "enabled": True, "weight": 1.7, "guidance_start": 0.0, "guidance_end": 1.0,

"input_mode": "batch",

                    "image": img_ip_adapter,
                    "pixel_perfect": True
                },
                {
                    "module": "none",
                    "model": "control_v11p_sd15_openpose [cab727d4]", 
                    "control_mode": "Balanced",
                    "resize_mode": "Crop and Resize", 
                    "enabled": True,
                    "weight": 1,
                    "guidance_start": 0.0,
                    "guidance_end": 1.0,
                    "image": img_openpose,
                    "pixel_perfect": True
                },`