Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def process(input_image, prompt, negative_prompt, num_steps, controlnet_conditio
|
|
63 |
# resize input_image to 1024x1024
|
64 |
input_image = resize_image(input_image)
|
65 |
|
66 |
-
pose_image = openpose(
|
67 |
|
68 |
images = generate_(prompt, negative_prompt, pose_image, num_steps, controlnet_conditioning_scale, seed)
|
69 |
|
|
|
63 |
# resize input_image to 1024x1024
|
64 |
input_image = resize_image(input_image)
|
65 |
|
66 |
+
pose_image = openpose(input_image, include_body=True, include_hand=True, include_face=True)[0]
|
67 |
|
68 |
images = generate_(prompt, negative_prompt, pose_image, num_steps, controlnet_conditioning_scale, seed)
|
69 |
|