Skip to content

Commit bfc9224

Browse files
authored
Update __init__.py
1 parent e44284c commit bfc9224

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/controlnet_aux/dwpose/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ def __call__(self, oriImg, output_type="pil", detect_resolution=512, image_resol
8282
detected_map = cv2.resize(detected_map, (W, H), interpolation=cv2.INTER_LINEAR)
8383

8484
if output_type == "pil":
85-
detected_map = Image.fromarray(cv2.cvtColor(detected_map, cv2.COLOR_BGR2RGB))
85+
detected_map = Image.fromarray(detected_map)
8686

87-
return detected_map
87+
return detected_map

0 commit comments

Comments
 (0)