TalHach61 commited on
Commit
5d7bbf3
·
verified ·
1 Parent(s): 2a6a7d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(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
 
 
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