File size: 11,294 Bytes
2b36601 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | import math
import numpy as np
import matplotlib
import cv2
import sys
import os
import _pickle as cPickle
import gzip
import subprocess
import torch
import colorsys
from typing import List, Dict, Any, Optional, Tuple
eps = 0.01
def alpha_blend_color(color, alpha):
"""blend color according to point conf
"""
return [int(c * alpha) for c in color]
def draw_bodypose(canvas, candidate, subset, score, transparent=False):
"""Draw body pose on canvas
Args:
canvas: numpy array canvas to draw on
candidate: pose candidate
subset: pose subset
score: confidence scores
transparent: whether to use transparent background
Returns:
canvas: drawn canvas
"""
H, W, C = canvas.shape
candidate = np.array(candidate)
subset = np.array(subset)
stickwidth = 4
limbSeq = [[2, 3], [2, 6], [3, 4], [4, 5], [6, 7], [7, 8], [2, 9], [9, 10],
[10, 11], [2, 12], [12, 13], [13, 14], [2, 1], [1, 15], [15, 17],
[1, 16], [16, 18], [3, 17], [6, 18]]
colors = [[255, 0, 0], [255, 85, 0], [255, 170, 0], [255, 255, 0], [170, 255, 0], [85, 255, 0], [0, 255, 0],
[0, 255, 85], [0, 255, 170], [0, 255, 255], [0, 170, 255], [0, 85, 255], [0, 0, 255], [85, 0, 255],
[170, 0, 255], [255, 0, 255], [255, 0, 170], [255, 0, 85]]
# Add alpha channel if transparent
if transparent:
colors = [color + [255] for color in colors]
for i in range(17):
for n in range(len(subset)):
index = subset[n][np.array(limbSeq[i]) - 1]
conf = score[n][np.array(limbSeq[i]) - 1]
if conf[0] < 0.3 or conf[1] < 0.3:
continue
Y = candidate[index.astype(int), 0] * float(W)
X = candidate[index.astype(int), 1] * float(H)
mX = np.mean(X)
mY = np.mean(Y)
length = ((X[0] - X[1]) ** 2 + (Y[0] - Y[1]) ** 2) ** 0.5
angle = math.degrees(math.atan2(X[0] - X[1], Y[0] - Y[1]))
polygon = cv2.ellipse2Poly((int(mY), int(mX)), (int(length / 2), stickwidth), int(angle), 0, 360, 1)
if transparent:
color = colors[i][:-1] + [int(255 * conf[0] * conf[1])] # Adjust alpha based on confidence
else:
color = colors[i]
cv2.fillConvexPoly(canvas, polygon, color)
canvas = (canvas * 0.6).astype(np.uint8)
for i in range(18):
for n in range(len(subset)):
index = int(subset[n][i])
if index == -1:
continue
x, y = candidate[index][0:2]
conf = score[n][i]
x = int(x * W)
y = int(y * H)
if transparent:
color = colors[i][:-1] + [int(255 * conf)] # Adjust alpha based on confidence
else:
color = colors[i]
cv2.circle(canvas, (int(x), int(y)), 4, color, thickness=-1)
return canvas
def draw_handpose(canvas, all_hand_peaks, all_hand_scores, transparent=False):
"""Draw hand pose on canvas"""
H, W, C = canvas.shape
edges = [[0, 1], [1, 2], [2, 3], [3, 4], [0, 5], [5, 6], [6, 7], [7, 8], [0, 9], [9, 10],
[10, 11], [11, 12], [0, 13], [13, 14], [14, 15], [15, 16], [0, 17], [17, 18], [18, 19], [19, 20]]
for peaks, scores in zip(all_hand_peaks, all_hand_scores):
for ie, e in enumerate(edges):
x1, y1 = peaks[e[0]]
x2, y2 = peaks[e[1]]
x1 = int(x1 * W)
y1 = int(y1 * H)
x2 = int(x2 * W)
y2 = int(y2 * H)
score = scores[e[0]] * scores[e[1]]
if x1 > eps and y1 > eps and x2 > eps and y2 > eps:
color = matplotlib.colors.hsv_to_rgb([ie / float(len(edges)), 1.0, 1.0])
if transparent:
color = np.append(color, score) # Add alpha channel
else:
color = color * score
cv2.line(canvas, (x1, y1), (x2, y2), color * 255, thickness=2)
for i, keypoint in enumerate(peaks):
x, y = keypoint
x = int(x * W)
y = int(y * H)
if x > eps and y > eps:
if transparent:
color = (0, 0, 0, scores[i]) # Black with alpha
else:
color = (0, 0, int(scores[i] * 255)) # Original color
cv2.circle(canvas, (x, y), 4, color, thickness=-1)
return canvas
def draw_facepose(canvas, all_lmks, all_scores, transparent=False):
"""Draw face pose on canvas"""
H, W, C = canvas.shape
for lmks, scores in zip(all_lmks, all_scores):
for lmk, score in zip(lmks, scores):
x, y = lmk
x = int(x * W)
y = int(y * H)
if x > eps and y > eps:
if transparent:
color = (255, 255, 255, int(score * 255)) # White with alpha
else:
conf = int(score * 255)
color = (conf, conf, conf) # Original grayscale
cv2.circle(canvas, (x, y), 3, color, thickness=-1)
return canvas
def draw_pose(pose, H, W, include_body=True, include_hand=True, include_face=True, ref_w=2160, transparent=False):
"""vis dwpose outputs with optional transparent background
Args:
pose (Dict): DWposeDetector outputs - 支持新的person_id格式和旧格式
H (int): height
W (int): width
include_body (bool): whether to draw body keypoints
include_hand (bool): whether to draw hand keypoints
include_face (bool): whether to draw face keypoints
ref_w (int, optional): reference width. Defaults to 2160.
transparent (bool, optional): whether to use transparent background. Defaults to False.
Returns:
np.ndarray: image pixel value in RGBA mode if transparent=True, otherwise RGB mode
"""
sz = min(H, W)
sr = (ref_w / sz) if sz != ref_w else 1
# Create canvas - now with alpha channel if transparent
if transparent:
canvas = np.zeros(shape=(int(H*sr), int(W*sr), 4), dtype=np.uint8)
else:
canvas = np.zeros(shape=(int(H*sr), int(W*sr), 3), dtype=np.uint8)
# 检查是否是新的person_id数据格式
if 'num_persons' in pose and pose['num_persons'] > 0:
# 使用新的多人数据结构
processed_data = process_pose_data(pose, H, W)
bodies = processed_data['bodies']
faces = processed_data['faces']
hands = processed_data['hands']
candidate = bodies['candidate']
subset = bodies['subset']
if include_body:
canvas = draw_bodypose(canvas, candidate, subset, score=bodies['score'], transparent=transparent)
if include_hand:
canvas = draw_handpose(canvas, hands, processed_data['hands_score'], transparent=transparent)
if include_face:
canvas = draw_facepose(canvas, faces, processed_data['faces_score'], transparent=transparent)
else:
# 兼容旧的数据格式 - 作为备选方案
try:
bodies = pose['bodies']
faces = pose['faces']
hands = pose['hands']
candidate = bodies['candidate']
subset = bodies['subset']
if include_body:
canvas = draw_bodypose(canvas, candidate, subset, score=bodies['score'], transparent=transparent)
if include_hand:
canvas = draw_handpose(canvas, hands, pose['hands_score'], transparent=transparent)
if include_face:
canvas = draw_facepose(canvas, faces, pose['faces_score'], transparent=transparent)
except Exception as e:
print(f"绘制旧格式数据失败: {str(e)}")
# 返回空画布
pass
if transparent:
return cv2.cvtColor(cv2.resize(canvas, (W, H)), cv2.COLOR_BGRA2RGBA).transpose(2, 0, 1)
else:
return cv2.cvtColor(cv2.resize(canvas, (W, H)), cv2.COLOR_BGR2RGB).transpose(2, 0, 1)
def process_pose_data(pose_data: Dict[str, Any], height: int, width: int) -> Dict[str, Any]:
"""
处理姿势数据,完全支持新的person_id数据结构
"""
processed_data = {}
# 确保使用新的数据结构
if 'num_persons' in pose_data and pose_data['num_persons'] > 0:
num_persons = pose_data['num_persons']
# 收集所有人的关键点数据
all_bodies = []
all_body_scores = []
all_hands = []
all_hand_scores = []
all_faces = []
all_face_scores = []
for person_id in range(num_persons):
person_key = f'person_{person_id}'
if person_key in pose_data:
person_data = pose_data[person_key]
all_bodies.append(person_data['body_keypoints'])
all_body_scores.append(person_data['body_scores'])
all_hands.extend([person_data['left_hand_keypoints'], person_data['right_hand_keypoints']])
all_hand_scores.extend([person_data['left_hand_scores'], person_data['right_hand_scores']])
all_faces.append(person_data['face_keypoints'])
all_face_scores.append(person_data['face_scores'])
# 合并所有人的数据
if all_bodies:
bodies = np.vstack(all_bodies)
body_scores = np.array(all_body_scores)
# 创建subset - 为每个人创建独立的subset行
subset = []
for person_id in range(num_persons):
person_subset = list(range(person_id * 18, (person_id + 1) * 18))
subset.append(person_subset)
subset = np.array(subset)
# 创建scores - 基于body_scores中的有效性
scores = np.ones_like(body_scores)
for i in range(num_persons):
for j in range(18):
if body_scores[i, j] < 0: # 如果body_scores为负数,认为无效
scores[i, j] = 0.0
else:
scores[i, j] = 1.0
else:
bodies = np.array([])
subset = np.array([[]])
scores = np.array([[]])
hands = np.array(all_hands) if all_hands else np.array([])
hand_scores = np.array(all_hand_scores) if all_hand_scores else np.array([])
faces = np.array(all_faces) if all_faces else np.array([])
face_scores = np.array(all_face_scores) if all_face_scores else np.array([])
else:
# 兼容性处理 - 如果不是新格式,返回空数据
bodies = np.array([])
subset = np.array([[]])
scores = np.array([[]])
hands = np.array([])
hand_scores = np.array([])
faces = np.array([])
face_scores = np.array([])
processed_data['bodies'] = {
'candidate': bodies,
'subset': subset,
'score': scores
}
processed_data['hands'] = hands
processed_data['hands_score'] = hand_scores
processed_data['faces'] = faces
processed_data['faces_score'] = face_scores
return processed_data |