We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44284c commit bfc9224Copy full SHA for bfc9224
src/controlnet_aux/dwpose/__init__.py
@@ -82,6 +82,6 @@ def __call__(self, oriImg, output_type="pil", detect_resolution=512, image_resol
82
detected_map = cv2.resize(detected_map, (W, H), interpolation=cv2.INTER_LINEAR)
83
84
if output_type == "pil":
85
- detected_map = Image.fromarray(cv2.cvtColor(detected_map, cv2.COLOR_BGR2RGB))
+ detected_map = Image.fromarray(detected_map)
86
87
- return detected_map
+ return detected_map
0 commit comments