Skip to content

Commit 385d00f

Browse files
committed
update
1 parent d2b6b05 commit 385d00f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ img = Image.open(BytesIO(response.content)).convert("RGB").resize((512, 512))
4343
# "lineart_coarse", "lineart_realistic", "mediapipe_face", "mlsd", "normal_bae", "normal_midas",
4444
# "openpose", "openpose_face", "openpose_faceonly", "openpose_full", "openpose_hand",
4545
# "scribble_hed, "scribble_pidinet", "shuffle", "softedge_hed", "softedge_hedsafe",
46-
# "softedge_pidinet", "softedge_pidsafe"]
46+
# "softedge_pidinet", "softedge_pidsafe", "dwpose"]
4747
processor_id = 'scribble_hed'
4848
processor = Processor(processor_id)
4949

@@ -77,14 +77,14 @@ sam = SamDetector.from_pretrained("ybelkada/segment-anything", subfolder="checkp
7777
mobile_sam = SamDetector.from_pretrained("dhkim2810/MobileSAM", model_type="vit_t", filename="mobile_sam.pt")
7878
leres = LeresDetector.from_pretrained("lllyasviel/Annotators")
7979

80-
# download sepecify configs and ckpts
80+
# specify configs, ckpts and device, or it will be downloaded automatically and use cpu by default
8181
# det_config: ./src/controlnet_aux/dwpose/yolox_config/yolox_l_8xb8-300e_coco.py
8282
# det_ckpt: https://download.openmmlab.com/mmdetection/v2.0/yolox/yolox_l_8x8_300e_coco/yolox_l_8x8_300e_coco_20211126_140236-d3bd2b23.pth
8383
# pose_config: ./src/controlnet_aux/dwpose/dwpose_config/dwpose-l_384x288.py
8484
# pose_ckpt: https://huggingface.co/wanghaofan/dw-ll_ucoco_384/resolve/main/dw-ll_ucoco_384.pth
8585
import torch
8686
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
87-
dwpose = DWposeDetector(det_config, det_ckpt, pose_config, pose_ckpt, device)
87+
dwpose = DWposeDetector(det_config=det_config, det_ckpt=det_ckpt, pose_config=pose_config, pose_ckpt=pose_ckpt, device=device)
8888

8989
# instantiate
9090
canny = CannyDetector()

0 commit comments

Comments
 (0)