@@ -12,6 +12,14 @@ All credit & copyright goes to https://github.com/lllyasviel .
12
12
pip install controlnet-aux==0.0.6
13
13
```
14
14
15
+ To support DWPose which is dependent on MMDetection, MMCV and MMPose
16
+ ```
17
+ pip install -U openmim
18
+ mim install mmengine
19
+ mim install "mmcv>=2.0.1"
20
+ mim install "mmdet>=3.1.0"
21
+ mim install "mmpose>=1.1.0"
22
+ ```
15
23
## Usage
16
24
17
25
@@ -35,7 +43,7 @@ img = Image.open(BytesIO(response.content)).convert("RGB").resize((512, 512))
35
43
# "lineart_coarse", "lineart_realistic", "mediapipe_face", "mlsd", "normal_bae", "normal_midas",
36
44
# "openpose", "openpose_face", "openpose_faceonly", "openpose_full", "openpose_hand",
37
45
# "scribble_hed, "scribble_pidinet", "shuffle", "softedge_hed", "softedge_hedsafe",
38
- # "softedge_pidinet", "softedge_pidsafe"]
46
+ # "softedge_pidinet", "softedge_pidsafe", "dwpose" ]
39
47
processor_id = ' scribble_hed'
40
48
processor = Processor(processor_id)
41
49
@@ -47,7 +55,7 @@ Each model can be loaded individually by importing and instantiating them as fol
47
55
from PIL import Image
48
56
import requests
49
57
from io import BytesIO
50
- from controlnet_aux import HEDdetector, MidasDetector, MLSDdetector, OpenposeDetector, PidiNetDetector, NormalBaeDetector, LineartDetector, LineartAnimeDetector, CannyDetector, ContentShuffleDetector, ZoeDetector, MediapipeFaceDetector, SamDetector, LeresDetector
58
+ from controlnet_aux import HEDdetector, MidasDetector, MLSDdetector, OpenposeDetector, PidiNetDetector, NormalBaeDetector, LineartDetector, LineartAnimeDetector, CannyDetector, ContentShuffleDetector, ZoeDetector, MediapipeFaceDetector, SamDetector, LeresDetector, DWposeDetector
51
59
52
60
# load image
53
61
url = " https://huggingface.co/lllyasviel/sd-controlnet-openpose/resolve/main/images/pose.png"
@@ -69,6 +77,15 @@ sam = SamDetector.from_pretrained("ybelkada/segment-anything", subfolder="checkp
69
77
mobile_sam = SamDetector.from_pretrained(" dhkim2810/MobileSAM" , model_type = " vit_t" , filename = " mobile_sam.pt" )
70
78
leres = LeresDetector.from_pretrained(" lllyasviel/Annotators" )
71
79
80
+ # specify configs, ckpts and device, or it will be downloaded automatically and use cpu by default
81
+ # det_config: ./src/controlnet_aux/dwpose/yolox_config/yolox_l_8xb8-300e_coco.py
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
+ # pose_config: ./src/controlnet_aux/dwpose/dwpose_config/dwpose-l_384x288.py
84
+ # pose_ckpt: https://huggingface.co/wanghaofan/dw-ll_ucoco_384/resolve/main/dw-ll_ucoco_384.pth
85
+ import torch
86
+ device = torch.device(' cuda' if torch.cuda.is_available() else ' cpu' )
87
+ dwpose = DWposeDetector(det_config = det_config, det_ckpt = det_ckpt, pose_config = pose_config, pose_ckpt = pose_ckpt, device = device)
88
+
72
89
# instantiate
73
90
canny = CannyDetector()
74
91
content = ContentShuffleDetector()
@@ -91,4 +108,5 @@ processed_image_leres = leres(img)
91
108
processed_image_canny = canny(img)
92
109
processed_image_content = content(img)
93
110
processed_image_mediapipe_face = face_detector(img)
111
+ processed_image_dwpose = dwpose(img)
94
112
```
0 commit comments