Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Foligattilj authored and Fannovel16 committed Nov 18, 2023
1 parent f94e818 commit c929fbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ All credit & copyright goes to https://github.com/lllyasviel.
* Added alternative DWPose models
* Implemented the preprocessor for [AnimalPose ControlNet](https://github.com/abehonest/ControlNet_AnimalPose/tree/main). Check [Animal Pose AP-10K](#animal-pose-ap-10k)
* Added YOLO-NAS models which are drop-in replacements of YOLOX
* Fixed Openpose Face/Hands no longer detecting: https://github.com/Fannovel16/comfyui_controlnet_aux/issues/54
# Q&A:
* Why some nodes doesn't appear after I installed this repo?

Expand Down
2 changes: 1 addition & 1 deletion src/controlnet_aux/open_pose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __call__(self, input_image, detect_resolution=512, include_body=True, includ

detected_map, remove_pad = resize_image_with_pad(input_image, detect_resolution, upscale_method)

poses = self.detect_poses(detected_map)
poses = self.detect_poses(detected_map, include_hand=include_hand, include_face=include_face)
detected_map = remove_pad(detected_map)
canvas = draw_poses(poses, detected_map.shape[0], detected_map.shape[1], draw_body=include_body, draw_hand=include_hand, draw_face=include_face)

Expand Down

0 comments on commit c929fbb

Please sign in to comment.