@@ -43,7 +43,7 @@ img = Image.open(BytesIO(response.content)).convert("RGB").resize((512, 512))
43
43
# "lineart_coarse", "lineart_realistic", "mediapipe_face", "mlsd", "normal_bae", "normal_midas",
44
44
# "openpose", "openpose_face", "openpose_faceonly", "openpose_full", "openpose_hand",
45
45
# "scribble_hed, "scribble_pidinet", "shuffle", "softedge_hed", "softedge_hedsafe",
46
- # "softedge_pidinet", "softedge_pidsafe"]
46
+ # "softedge_pidinet", "softedge_pidsafe", "dwpose" ]
47
47
processor_id = ' scribble_hed'
48
48
processor = Processor(processor_id)
49
49
@@ -77,14 +77,14 @@ sam = SamDetector.from_pretrained("ybelkada/segment-anything", subfolder="checkp
77
77
mobile_sam = SamDetector.from_pretrained(" dhkim2810/MobileSAM" , model_type = " vit_t" , filename = " mobile_sam.pt" )
78
78
leres = LeresDetector.from_pretrained(" lllyasviel/Annotators" )
79
79
80
- # download sepecify configs and ckpts
80
+ # specify configs, ckpts and device, or it will be downloaded automatically and use cpu by default
81
81
# det_config: ./src/controlnet_aux/dwpose/yolox_config/yolox_l_8xb8-300e_coco.py
82
82
# det_ckpt: https://download.openmmlab.com/mmdetection/v2.0/yolox/yolox_l_8x8_300e_coco/yolox_l_8x8_300e_coco_20211126_140236-d3bd2b23.pth
83
83
# pose_config: ./src/controlnet_aux/dwpose/dwpose_config/dwpose-l_384x288.py
84
84
# pose_ckpt: https://huggingface.co/wanghaofan/dw-ll_ucoco_384/resolve/main/dw-ll_ucoco_384.pth
85
85
import torch
86
86
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)
88
88
89
89
# instantiate
90
90
canny = CannyDetector()
0 commit comments