File size: 38,944 Bytes
7344bef | 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 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 | # -*- coding: utf-8 -*-
# Copyright (c) Alibaba, Inc. and its affiliates.
import os
import cv2
import torch
import numpy as np
from . import util
from .wholebody import Wholebody, HWC3, resize_image
from PIL import Image
import onnxruntime as ort
from concurrent.futures import ThreadPoolExecutor
import threading
os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE"
def convert_to_numpy(image):
if isinstance(image, Image.Image):
image = np.array(image)
elif isinstance(image, torch.Tensor):
image = image.detach().cpu().numpy()
elif isinstance(image, np.ndarray):
image = image.copy()
else:
raise f'Unsurpport datatype{type(image)}, only surpport np.ndarray, torch.Tensor, Pillow Image.'
return image
def draw_pose(pose, H, W, use_hand=False, use_body=False, use_face=False):
bodies = pose['bodies']
faces = pose['faces']
hands = pose['hands']
candidate = bodies['candidate']
subset = bodies['subset']
canvas = np.zeros(shape=(H, W, 3), dtype=np.uint8)
if use_body:
canvas = util.draw_bodypose(canvas, candidate, subset)
if use_hand:
canvas = util.draw_handpose(canvas, hands)
if use_face:
canvas = util.draw_facepose(canvas, faces)
return canvas
def _to_uint8_rgb(image):
image = convert_to_numpy(image)
if image.ndim == 3 and image.shape[0] in (1, 3, 4) and image.shape[0] != image.shape[-1]:
image = np.transpose(image, (1, 2, 0))
if image.ndim == 2:
image = cv2.cvtColor(image, cv2.COLOR_GRAY2RGB)
elif image.ndim == 3 and image.shape[2] == 1:
image = cv2.cvtColor(image, cv2.COLOR_GRAY2RGB)
elif image.ndim == 3 and image.shape[2] == 4:
image = cv2.cvtColor(image, cv2.COLOR_RGBA2RGB)
elif image.ndim != 3 or image.shape[2] != 3:
raise ValueError(f"Unsupported image shape for pose extraction: {image.shape}")
if image.dtype != np.uint8:
image = image.astype(np.float32)
if image.size:
if image.min() < 0.0:
image = (image + 1.0) * 127.5
elif image.max() <= 1.0:
image = image * 255.0
image = np.clip(image, 0, 255).astype(np.uint8)
return image
def _valid_xy(points):
points = np.asarray(points)
return np.all(np.isfinite(points), axis=-1) & np.all(points >= 0, axis=-1)
def _safe_ratio(num: float, den: float) -> float:
if den == 0 or not np.isfinite(den):
return 1.0
val = num / den
return float(val) if np.isfinite(val) else 1.0
def _nan_to_one(val: float) -> float:
return 1.0 if not np.isfinite(val) else float(val)
def _pose_point_mask(points):
points = np.asarray(points)
return np.all(np.isfinite(points), axis=-1) & ~np.all(points == -1, axis=-1)
def _point_in_unit_frame(point):
point = np.asarray(point)
return np.all(np.isfinite(point)) and 0.0 <= point[0] <= 1.0 and 0.0 <= point[1] <= 1.0
def _transform_points(points: np.ndarray, orig_center: np.ndarray, new_center: np.ndarray, scale: float, point_mask=None, orig_center_valid=True, new_center_valid=True) -> np.ndarray:
out = points.copy()
if not orig_center_valid or not new_center_valid:
return out
if not np.all(np.isfinite(orig_center)) or not np.all(np.isfinite(new_center)):
return out
mask = _pose_point_mask(points) if point_mask is None else (np.asarray(point_mask) & np.all(np.isfinite(points), axis=-1))
if np.any(mask):
out[mask] = new_center + (points[mask] - orig_center) * scale
return out
def _scail_face_scale(ref_face: np.ndarray, drive_face: np.ndarray, center_idx: int = 30) -> float:
if ref_face.shape[0] <= center_idx or drive_face.shape[0] <= center_idx:
return 1.0
ref_center = ref_face[center_idx]
drive_center = drive_face[center_idx]
if not _valid_xy(ref_center) or not _valid_xy(drive_center):
return 1.0
valid = _valid_xy(ref_face) & _valid_xy(drive_face)
valid[center_idx] = False
if not np.any(valid):
return 1.0
ref_dist = np.linalg.norm(ref_face[valid] - ref_center, axis=1)
drive_dist = np.linalg.norm(drive_face[valid] - drive_center, axis=1)
if ref_dist.size == 0 or drive_dist.size == 0:
return 1.0
scale = _safe_ratio(float(np.mean(ref_dist)), float(np.mean(drive_dist)))
return float(np.clip(scale, 0.8, 1.5))
def _body_dist(body: np.ndarray, a: int, b: int) -> float:
pa, pb = body[a], body[b]
if not _valid_xy(pa) or not _valid_xy(pb):
return np.nan
return float(np.linalg.norm(pa - pb))
def _hand_dist(hand: np.ndarray, idx_a: int, idx_b: int) -> float:
pa, pb = hand[idx_a], hand[idx_b]
if not _valid_xy(pa) or not _valid_xy(pb):
return np.nan
return float(np.linalg.norm(pa - pb))
def _compute_alignment_scales(ref_pose: dict, drive_pose: dict, ref_ratio: float, drive_ratio: float):
body_ref = ref_pose["bodies"]["candidate"].copy()
body_drive = drive_pose["bodies"]["candidate"].copy()
hands_ref = ref_pose["hands"].copy()
hands_drive = drive_pose["hands"].copy()
faces_ref = ref_pose["faces"].copy()
faces_drive = drive_pose["faces"].copy()
body_ref[:, 0] *= ref_ratio
body_drive[:, 0] *= drive_ratio
hands_ref[:, :, 0] *= ref_ratio
hands_drive[:, :, 0] *= drive_ratio
faces_ref[:, :, 0] *= ref_ratio
faces_drive[:, :, 0] *= drive_ratio
scales = {
"scale_neck": _safe_ratio(_body_dist(body_ref, 0, 1), _body_dist(body_drive, 0, 1)),
"scale_face_left": _safe_ratio(
_body_dist(body_ref, 16, 14) + _body_dist(body_ref, 14, 0),
_body_dist(body_drive, 16, 14) + _body_dist(body_drive, 14, 0),
),
"scale_face_right": _safe_ratio(
_body_dist(body_ref, 17, 15) + _body_dist(body_ref, 15, 0),
_body_dist(body_drive, 17, 15) + _body_dist(body_drive, 15, 0),
),
"scale_shoulder": _safe_ratio(_body_dist(body_ref, 2, 5), _body_dist(body_drive, 2, 5)),
"scale_arm_upper": np.nanmean(
[
_safe_ratio(_body_dist(body_ref, 2, 3), _body_dist(body_drive, 2, 3)),
_safe_ratio(_body_dist(body_ref, 5, 6), _body_dist(body_drive, 5, 6)),
]
),
"scale_arm_lower": np.nanmean(
[
_safe_ratio(_body_dist(body_ref, 3, 4), _body_dist(body_drive, 3, 4)),
_safe_ratio(_body_dist(body_ref, 6, 7), _body_dist(body_drive, 6, 7)),
]
),
"scale_body_len": _safe_ratio(
_body_dist(body_ref, 1, 8) if not np.isnan(_body_dist(body_ref, 1, 8)) else _body_dist(body_ref, 1, 11),
_body_dist(body_drive, 1, 8) if not np.isnan(_body_dist(body_drive, 1, 8)) else _body_dist(body_drive, 1, 11),
),
"scale_leg_upper": np.nanmean(
[
_safe_ratio(_body_dist(body_ref, 8, 9), _body_dist(body_drive, 8, 9)),
_safe_ratio(_body_dist(body_ref, 11, 12), _body_dist(body_drive, 11, 12)),
]
),
"scale_leg_lower": np.nanmean(
[
_safe_ratio(_body_dist(body_ref, 9, 10), _body_dist(body_drive, 9, 10)),
_safe_ratio(_body_dist(body_ref, 12, 13), _body_dist(body_drive, 12, 13)),
]
),
"scale_face": _scail_face_scale(faces_ref[0], faces_drive[0]) if len(faces_ref) and len(faces_drive) else 1.0,
}
hand_pairs = [(0, 1), (0, 5), (0, 9), (0, 13), (0, 17)]
hand_ratios = []
for idx_a, idx_b in hand_pairs:
if len(hands_ref) > 0 and len(hands_drive) > 0:
hand_ratios.append(_safe_ratio(_hand_dist(hands_ref[0], idx_a, idx_b), _hand_dist(hands_drive[0], idx_a, idx_b)))
if len(hands_ref) > 1 and len(hands_drive) > 1:
hand_ratios.append(_safe_ratio(_hand_dist(hands_ref[1], idx_a, idx_b), _hand_dist(hands_drive[1], idx_a, idx_b)))
hand_ratios = [v for v in hand_ratios if np.isfinite(v)]
scales["scale_hand"] = np.mean(hand_ratios) if hand_ratios else (scales["scale_arm_upper"] + scales["scale_arm_lower"]) / 2
scales = {k: _nan_to_one(v) for k, v in scales.items()}
ref_neck = body_ref[1]
drive_neck = body_drive[1]
offset = ref_neck - drive_neck if _valid_xy(ref_neck) and _valid_xy(drive_neck) else np.zeros(2, dtype=np.float32)
return scales, offset.astype(np.float32)
def _apply_pose_alignment(pose: dict, scales: dict, offset: np.ndarray, ref_ratio: float, drive_ratio: float):
body_orig = pose["bodies"]["candidate"].astype(np.float32).copy()
hands_orig = pose["hands"].astype(np.float32).copy()
faces_orig = pose["faces"].astype(np.float32).copy()
body_valid = _valid_xy(body_orig)
hands_valid = _valid_xy(hands_orig)
faces_valid = _valid_xy(faces_orig)
body_orig[:, 0] *= drive_ratio
hands_orig[:, :, 0] *= drive_ratio
faces_orig[:, :, 0] *= drive_ratio
body = body_orig.copy()
hands = hands_orig.copy()
faces = faces_orig.copy()
body[0:1] = _transform_points(body_orig[0:1], body_orig[1], body[1], scales["scale_neck"], point_mask=body_valid[0:1], orig_center_valid=body_valid[1], new_center_valid=body_valid[1])
body[[14, 16]] = _transform_points(body_orig[[14, 16]], body_orig[0], body[0], scales["scale_face_left"], point_mask=body_valid[[14, 16]], orig_center_valid=body_valid[0], new_center_valid=body_valid[0])
body[[15, 17]] = _transform_points(body_orig[[15, 17]], body_orig[0], body[0], scales["scale_face_right"], point_mask=body_valid[[15, 17]], orig_center_valid=body_valid[0], new_center_valid=body_valid[0])
body[[2, 5]] = _transform_points(body_orig[[2, 5]], body_orig[1], body[1], scales["scale_shoulder"], point_mask=body_valid[[2, 5]], orig_center_valid=body_valid[1], new_center_valid=body_valid[1])
body[[3]] = _transform_points(body_orig[[3]], body_orig[2], body[2], scales["scale_arm_upper"], point_mask=body_valid[[3]], orig_center_valid=body_valid[2], new_center_valid=body_valid[2])
body[[4]] = _transform_points(body_orig[[4]], body_orig[3], body[3], scales["scale_arm_lower"], point_mask=body_valid[[4]], orig_center_valid=body_valid[3], new_center_valid=body_valid[3])
hands[1] = _transform_points(hands_orig[1], body_orig[4], body[4], scales["scale_hand"], point_mask=hands_valid[1], orig_center_valid=body_valid[4], new_center_valid=body_valid[4])
body[[6]] = _transform_points(body_orig[[6]], body_orig[5], body[5], scales["scale_arm_upper"], point_mask=body_valid[[6]], orig_center_valid=body_valid[5], new_center_valid=body_valid[5])
body[[7]] = _transform_points(body_orig[[7]], body_orig[6], body[6], scales["scale_arm_lower"], point_mask=body_valid[[7]], orig_center_valid=body_valid[6], new_center_valid=body_valid[6])
hands[0] = _transform_points(hands_orig[0], body_orig[7], body[7], scales["scale_hand"], point_mask=hands_valid[0], orig_center_valid=body_valid[7], new_center_valid=body_valid[7])
body[[8, 11]] = _transform_points(body_orig[[8, 11]], body_orig[1], body[1], scales["scale_body_len"], point_mask=body_valid[[8, 11]], orig_center_valid=body_valid[1], new_center_valid=body_valid[1])
body[[9]] = _transform_points(body_orig[[9]], body_orig[8], body[8], scales["scale_leg_upper"], point_mask=body_valid[[9]], orig_center_valid=body_valid[8], new_center_valid=body_valid[8])
body[[10]] = _transform_points(body_orig[[10]], body_orig[9], body[9], scales["scale_leg_lower"], point_mask=body_valid[[10]], orig_center_valid=body_valid[9], new_center_valid=body_valid[9])
body[[12]] = _transform_points(body_orig[[12]], body_orig[11], body[11], scales["scale_leg_upper"], point_mask=body_valid[[12]], orig_center_valid=body_valid[11], new_center_valid=body_valid[11])
body[[13]] = _transform_points(body_orig[[13]], body_orig[12], body[12], scales["scale_leg_lower"], point_mask=body_valid[[13]], orig_center_valid=body_valid[12], new_center_valid=body_valid[12])
if len(faces):
face = faces_orig[0]
if face.shape[0] > 30:
face_center = face[30]
drive_nose = body_orig[0]
aligned_nose = body[0]
face_center_valid = faces_valid[0, 30] if faces_valid.shape[1] > 30 else False
if face_center_valid and body_valid[0]:
new_center = aligned_nose + (face_center - drive_nose) * scales["scale_face"]
faces[0] = _transform_points(face, face_center, new_center, scales["scale_face"], point_mask=faces_valid[0], orig_center_valid=face_center_valid, new_center_valid=body_valid[0])
if np.any(body_valid):
body[body_valid] += offset
body[..., 0][body_valid] /= max(ref_ratio, 1e-6)
if np.any(hands_valid):
hands[hands_valid] += offset
hands[..., 0][hands_valid] /= max(ref_ratio, 1e-6)
if np.any(faces_valid):
faces[faces_valid] += offset
faces[..., 0][faces_valid] /= max(ref_ratio, 1e-6)
body[~body_valid] = -1
hands[~hands_valid] = -1
faces[~faces_valid] = -1
for hand_idx, wrist_idx in ((0, 7), (1, 4)):
if not body_valid[wrist_idx] or not _point_in_unit_frame(body[wrist_idx]):
hands[hand_idx] = -1
body = np.nan_to_num(body, nan=-1.0)
hands = np.nan_to_num(hands, nan=-1.0)
faces = np.nan_to_num(faces, nan=-1.0)
return {
"bodies": {"candidate": body, "subset": pose["bodies"]["subset"].copy()},
"hands": hands,
"faces": faces,
}
def _render_pose_map(pose: dict, render_shape, orig_shape, *, use_face=True):
render_h, render_w = render_shape
orig_h, orig_w = orig_shape
canvas = draw_pose(pose, render_h, render_w, use_hand=True, use_body=True, use_face=use_face)
interpolation = cv2.INTER_LANCZOS4 if orig_h * orig_w > render_h * render_w else cv2.INTER_AREA
return cv2.resize(canvas[..., ::-1], (orig_w, orig_h), interpolation=interpolation)
def _render_pose_map_overscan(pose: dict, render_shape, orig_shape, overscan: float, *, use_face=True):
if overscan <= 1.0:
return _render_pose_map(pose, render_shape, orig_shape, use_face=use_face)
render_h, render_w = render_shape
pad_y = max(0, int(round((overscan - 1.0) * render_h / 2.0)))
pad_x = max(0, int(round((overscan - 1.0) * render_w / 2.0)))
expanded_h = render_h + 2 * pad_y
expanded_w = render_w + 2 * pad_x
pose_for_draw = {
"bodies": {
"candidate": pose["bodies"]["candidate"].copy(),
"subset": pose["bodies"]["subset"].copy(),
},
"hands": pose["hands"].copy(),
"faces": pose["faces"].copy(),
}
def _remap_points(points):
mask = _pose_point_mask(points)
if np.any(mask):
points = points.copy()
points[mask, 0] = (points[mask, 0] * render_w + pad_x) / expanded_w
points[mask, 1] = (points[mask, 1] * render_h + pad_y) / expanded_h
return points
pose_for_draw["bodies"]["candidate"] = _remap_points(pose_for_draw["bodies"]["candidate"])
pose_for_draw["hands"] = _remap_points(pose_for_draw["hands"])
pose_for_draw["faces"] = _remap_points(pose_for_draw["faces"])
canvas = draw_pose(pose_for_draw, expanded_h, expanded_w, use_hand=True, use_body=True, use_face=use_face)
canvas = canvas[pad_y:pad_y + render_h, pad_x:pad_x + render_w]
orig_h, orig_w = orig_shape
interpolation = cv2.INTER_LANCZOS4 if orig_h * orig_w > render_h * render_w else cv2.INTER_AREA
return cv2.resize(canvas[..., ::-1], (orig_w, orig_h), interpolation=interpolation)
def _build_single_person_pose(candidate, subset):
if len(candidate) == 0:
return None
candidate = np.asarray(candidate).copy()
subset = np.asarray(subset).copy()
if candidate.ndim != 3 or subset.ndim != 2:
return None
if candidate.shape[1] == 0:
return None
if subset.shape[0] == 0:
person_idx = 0
else:
body_scores = subset[:, :18] if subset.shape[1] >= 18 else subset
body_scores = np.where(np.isfinite(body_scores), body_scores, -1)
mean_scores = np.mean(body_scores, axis=1)
person_idx = int(np.argmax(mean_scores))
if candidate.shape[1] < 18:
return None
visible = np.zeros(candidate.shape[1], dtype=bool)
if subset.shape[0] > person_idx:
visible_len = min(candidate.shape[1], subset.shape[1])
visible[:visible_len] = subset[person_idx, :visible_len] > 0.3
candidate[person_idx, ~visible] = -1
body = candidate[person_idx, :18].astype(np.float32).copy()
subset_out = np.full((1, 18), -1, dtype=np.float32)
for idx in range(18):
if _valid_xy(body[idx]):
subset_out[0, idx] = idx
faces = np.full((1, 68, body.shape[-1]), -1, dtype=np.float32)
if candidate.shape[1] >= 92:
face_slice = candidate[person_idx, 24:92].astype(np.float32).copy()
faces[0, : face_slice.shape[0]] = face_slice[:68]
hands = np.full((2, 21, body.shape[-1]), -1, dtype=np.float32)
if candidate.shape[1] >= 113:
right_hand = candidate[person_idx, 92:113].astype(np.float32).copy()
hands[0, : right_hand.shape[0]] = right_hand[:21]
if candidate.shape[1] >= 134:
left_hand = candidate[person_idx, 113:134].astype(np.float32).copy()
hands[1, : left_hand.shape[0]] = left_hand[:21]
return {"bodies": {"candidate": body, "subset": subset_out}, "hands": hands, "faces": faces}
class OptimizedWholebody:
"""Optimized version of Wholebody for faster serial processing"""
def __init__(self, onnx_det, onnx_pose, device='cuda:0'):
providers = ['CPUExecutionProvider'] if device == 'cpu' else ['CUDAExecutionProvider']
self.session_det = ort.InferenceSession(path_or_bytes=onnx_det, providers=providers)
self.session_pose = ort.InferenceSession(path_or_bytes=onnx_pose, providers=providers)
self.device = device
# Pre-allocate session options for better performance
self.session_det.set_providers(providers)
self.session_pose.set_providers(providers)
# Get input names once to avoid repeated lookups
self.det_input_name = self.session_det.get_inputs()[0].name
self.pose_input_name = self.session_pose.get_inputs()[0].name
self.pose_output_names = [out.name for out in self.session_pose.get_outputs()]
def __call__(self, ori_img):
from .onnxdet import inference_detector
from .onnxpose import inference_pose
det_result = inference_detector(self.session_det, ori_img)
keypoints, scores = inference_pose(self.session_pose, det_result, ori_img)
keypoints_info = np.concatenate(
(keypoints, scores[..., None]), axis=-1)
# compute neck joint
neck = np.mean(keypoints_info[:, [5, 6]], axis=1)
# neck score when visualizing pred
neck[:, 2:4] = np.logical_and(
keypoints_info[:, 5, 2:4] > 0.3,
keypoints_info[:, 6, 2:4] > 0.3).astype(int)
new_keypoints_info = np.insert(
keypoints_info, 17, neck, axis=1)
mmpose_idx = [
17, 6, 8, 10, 7, 9, 12, 14, 16, 13, 15, 2, 1, 4, 3
]
openpose_idx = [
1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17
]
new_keypoints_info[:, openpose_idx] = \
new_keypoints_info[:, mmpose_idx]
keypoints_info = new_keypoints_info
keypoints, scores = keypoints_info[
..., :2], keypoints_info[..., 2]
return keypoints, scores, det_result
class PoseAnnotator:
def __init__(self, cfg, device=None):
onnx_det = cfg['DETECTION_MODEL']
onnx_pose = cfg['POSE_MODEL']
self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu") if device is None else device
self.pose_estimation = Wholebody(onnx_det, onnx_pose, device=self.device)
self.resize_size = cfg.get("RESIZE_SIZE", 1024)
self.use_body = cfg.get('USE_BODY', True)
self.use_face = cfg.get('USE_FACE', True)
self.use_hand = cfg.get('USE_HAND', True)
@torch.no_grad()
@torch.inference_mode
def forward(self, image):
image = convert_to_numpy(image)
input_image = HWC3(image[..., ::-1])
return self.process(resize_image(input_image, self.resize_size), image.shape[:2])
def process(self, ori_img, ori_shape):
ori_h, ori_w = ori_shape
ori_img = ori_img.copy()
H, W, C = ori_img.shape
with torch.no_grad():
candidate, subset, det_result = self.pose_estimation(ori_img)
if len(candidate) == 0:
# No detections - return empty results
empty_ret_data = {}
if self.use_body:
empty_ret_data["detected_map_body"] = np.zeros((ori_h, ori_w, 3), dtype=np.uint8)
if self.use_face:
empty_ret_data["detected_map_face"] = np.zeros((ori_h, ori_w, 3), dtype=np.uint8)
if self.use_body and self.use_face:
empty_ret_data["detected_map_bodyface"] = np.zeros((ori_h, ori_w, 3), dtype=np.uint8)
if self.use_hand and self.use_body and self.use_face:
empty_ret_data["detected_map_handbodyface"] = np.zeros((ori_h, ori_w, 3), dtype=np.uint8)
return empty_ret_data, np.array([])
nums, keys, locs = candidate.shape
candidate[..., 0] /= float(W)
candidate[..., 1] /= float(H)
body = candidate[:, :18].copy()
body = body.reshape(nums * 18, locs)
score = subset[:, :18]
for i in range(len(score)):
for j in range(len(score[i])):
if score[i][j] > 0.3:
score[i][j] = int(18 * i + j)
else:
score[i][j] = -1
un_visible = subset < 0.3
candidate[un_visible] = -1
foot = candidate[:, 18:24]
faces = candidate[:, 24:92]
hands = candidate[:, 92:113]
hands = np.vstack([hands, candidate[:, 113:]])
bodies = dict(candidate=body, subset=score)
pose = dict(bodies=bodies, hands=hands, faces=faces)
ret_data = {}
if self.use_body:
detected_map_body = draw_pose(pose, H, W, use_body=True)
detected_map_body = cv2.resize(detected_map_body[..., ::-1], (ori_w, ori_h),
interpolation=cv2.INTER_LANCZOS4 if ori_h * ori_w > H * W else cv2.INTER_AREA)
ret_data["detected_map_body"] = detected_map_body
if self.use_face:
detected_map_face = draw_pose(pose, H, W, use_face=True)
detected_map_face = cv2.resize(detected_map_face[..., ::-1], (ori_w, ori_h),
interpolation=cv2.INTER_LANCZOS4 if ori_h * ori_w > H * W else cv2.INTER_AREA)
ret_data["detected_map_face"] = detected_map_face
if self.use_body and self.use_face:
detected_map_bodyface = draw_pose(pose, H, W, use_body=True, use_face=True)
detected_map_bodyface = cv2.resize(detected_map_bodyface[..., ::-1], (ori_w, ori_h),
interpolation=cv2.INTER_LANCZOS4 if ori_h * ori_w > H * W else cv2.INTER_AREA)
ret_data["detected_map_bodyface"] = detected_map_bodyface
if self.use_hand and self.use_body and self.use_face:
detected_map_handbodyface = draw_pose(pose, H, W, use_hand=True, use_body=True, use_face=True)
detected_map_handbodyface = cv2.resize(detected_map_handbodyface[..., ::-1], (ori_w, ori_h),
interpolation=cv2.INTER_LANCZOS4 if ori_h * ori_w > H * W else cv2.INTER_AREA)
ret_data["detected_map_handbodyface"] = detected_map_handbodyface
# convert_size
if det_result.shape[0] > 0:
w_ratio, h_ratio = ori_w / W, ori_h / H
det_result[..., ::2] *= h_ratio
det_result[..., 1::2] *= w_ratio
det_result = det_result.astype(np.int32)
return ret_data, det_result
class OptimizedPoseAnnotator(PoseAnnotator):
"""Optimized version using improved Wholebody class"""
def __init__(self, cfg, device=None):
onnx_det = cfg['DETECTION_MODEL']
onnx_pose = cfg['POSE_MODEL']
self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu") if device is None else device
self.pose_estimation = OptimizedWholebody(onnx_det, onnx_pose, device=self.device)
self.resize_size = cfg.get("RESIZE_SIZE", 1024)
self.use_body = cfg.get('USE_BODY', True)
self.use_face = cfg.get('USE_FACE', True)
self.use_hand = cfg.get('USE_HAND', True)
class PoseBodyFaceAnnotator(PoseAnnotator):
def __init__(self, cfg):
super().__init__(cfg)
self.use_body, self.use_face, self.use_hand = True, True, False
@torch.no_grad()
@torch.inference_mode
def forward(self, image):
ret_data, det_result = super().forward(image)
return ret_data['detected_map_bodyface']
class OptimizedPoseBodyFaceVideoAnnotator:
"""Optimized video annotator with multiple optimization strategies"""
def __init__(self, cfg, num_workers=2, chunk_size=8):
self.cfg = cfg
self.num_workers = num_workers
self.chunk_size = chunk_size
self.use_body, self.use_face, self.use_hand = True, True, True
# Initialize one annotator per worker to avoid ONNX session conflicts
self.annotators = []
for _ in range(num_workers):
annotator = OptimizedPoseAnnotator(cfg)
annotator.use_body, annotator.use_face, annotator.use_hand = True, True, True
self.annotators.append(annotator)
self._current_worker = 0
self._worker_lock = threading.Lock()
def _get_annotator(self):
"""Get next available annotator in round-robin fashion"""
with self._worker_lock:
annotator = self.annotators[self._current_worker]
self._current_worker = (self._current_worker + 1) % len(self.annotators)
return annotator
def _process_single_frame(self, frame_data):
"""Process a single frame with error handling"""
frame, frame_idx = frame_data
try:
annotator = self._get_annotator()
# Convert frame
frame = convert_to_numpy(frame)
input_image = HWC3(frame[..., ::-1])
resized_image = resize_image(input_image, annotator.resize_size)
# Process
ret_data, _ = annotator.process(resized_image, frame.shape[:2])
if 'detected_map_handbodyface' in ret_data:
return frame_idx, ret_data['detected_map_handbodyface']
else:
# Create empty frame if no detection
h, w = frame.shape[:2]
return frame_idx, np.zeros((h, w, 3), dtype=np.uint8)
except Exception as e:
print(f"Error processing frame {frame_idx}: {e}")
# Return empty frame on error
h, w = frame.shape[:2] if hasattr(frame, 'shape') else (480, 640)
return frame_idx, np.zeros((h, w, 3), dtype=np.uint8)
def forward(self, frames):
"""Process video frames with optimizations"""
if len(frames) == 0:
return []
# For small number of frames, use serial processing to avoid threading overhead
if len(frames) <= 4:
annotator = self.annotators[0]
ret_frames = []
for frame in frames:
frame = convert_to_numpy(frame)
input_image = HWC3(frame[..., ::-1])
resized_image = resize_image(input_image, annotator.resize_size)
ret_data, _ = annotator.process(resized_image, frame.shape[:2])
if 'detected_map_handbodyface' in ret_data:
ret_frames.append(ret_data['detected_map_handbodyface'])
else:
h, w = frame.shape[:2]
ret_frames.append(np.zeros((h, w, 3), dtype=np.uint8))
return ret_frames
# For larger videos, use parallel processing
frame_data = [(frame, idx) for idx, frame in enumerate(frames)]
results = [None] * len(frames)
# Process in chunks to manage memory
for chunk_start in range(0, len(frame_data), self.chunk_size * self.num_workers):
chunk_end = min(chunk_start + self.chunk_size * self.num_workers, len(frame_data))
chunk_data = frame_data[chunk_start:chunk_end]
with ThreadPoolExecutor(max_workers=self.num_workers) as executor:
chunk_results = list(executor.map(self._process_single_frame, chunk_data))
# Store results in correct order
for frame_idx, result in chunk_results:
results[frame_idx] = result
return results
class OptimizedPoseBodyFaceHandVideoAnnotator:
"""Optimized video annotator that includes hands, body, and face"""
def __init__(self, cfg, num_workers=2, chunk_size=8):
self.cfg = cfg
self.num_workers = num_workers
self.chunk_size = chunk_size
self.use_body, self.use_face, self.use_hand = True, True, True # Enable hands
# Initialize one annotator per worker to avoid ONNX session conflicts
self.annotators = []
for _ in range(num_workers):
annotator = OptimizedPoseAnnotator(cfg)
annotator.use_body, annotator.use_face, annotator.use_hand = True, True, True
self.annotators.append(annotator)
self._current_worker = 0
self._worker_lock = threading.Lock()
def _get_annotator(self):
"""Get next available annotator in round-robin fashion"""
with self._worker_lock:
annotator = self.annotators[self._current_worker]
self._current_worker = (self._current_worker + 1) % len(self.annotators)
return annotator
def _process_single_frame(self, frame_data):
"""Process a single frame with error handling"""
frame, frame_idx = frame_data
try:
annotator = self._get_annotator()
# Convert frame
frame = convert_to_numpy(frame)
input_image = HWC3(frame[..., ::-1])
resized_image = resize_image(input_image, annotator.resize_size)
# Process
ret_data, _ = annotator.process(resized_image, frame.shape[:2])
if 'detected_map_handbodyface' in ret_data:
return frame_idx, ret_data['detected_map_handbodyface']
else:
# Create empty frame if no detection
h, w = frame.shape[:2]
return frame_idx, np.zeros((h, w, 3), dtype=np.uint8)
except Exception as e:
print(f"Error processing frame {frame_idx}: {e}")
# Return empty frame on error
h, w = frame.shape[:2] if hasattr(frame, 'shape') else (480, 640)
return frame_idx, np.zeros((h, w, 3), dtype=np.uint8)
def forward(self, frames):
"""Process video frames with optimizations"""
if len(frames) == 0:
return []
# For small number of frames, use serial processing to avoid threading overhead
if len(frames) <= 4:
annotator = self.annotators[0]
ret_frames = []
for frame in frames:
frame = convert_to_numpy(frame)
input_image = HWC3(frame[..., ::-1])
resized_image = resize_image(input_image, annotator.resize_size)
ret_data, _ = annotator.process(resized_image, frame.shape[:2])
if 'detected_map_handbodyface' in ret_data:
ret_frames.append(ret_data['detected_map_handbodyface'])
else:
h, w = frame.shape[:2]
ret_frames.append(np.zeros((h, w, 3), dtype=np.uint8))
return ret_frames
# For larger videos, use parallel processing
frame_data = [(frame, idx) for idx, frame in enumerate(frames)]
results = [None] * len(frames)
# Process in chunks to manage memory
for chunk_start in range(0, len(frame_data), self.chunk_size * self.num_workers):
chunk_end = min(chunk_start + self.chunk_size * self.num_workers, len(frame_data))
chunk_data = frame_data[chunk_start:chunk_end]
with ThreadPoolExecutor(max_workers=self.num_workers) as executor:
chunk_results = list(executor.map(self._process_single_frame, chunk_data))
# Store results in correct order
for frame_idx, result in chunk_results:
results[frame_idx] = result
return results
class AlignedPoseBodyFaceVideoAnnotator:
def __init__(self, cfg):
self.cfg = cfg
self.ref_image = cfg.get("REF_IMAGE")
self.resize_size = cfg.get("RESIZE_SIZE", 1024)
self.render_overscan = max(1.0, float(cfg.get("ALIGN_RENDER_OVERSCAN", 2.0)))
self.annotator = OptimizedPoseAnnotator(cfg)
self._fallback = None
def _fallback_forward(self, frames):
if self._fallback is None:
self._fallback = OptimizedPoseBodyFaceVideoAnnotator(self.cfg)
return self._fallback.forward(frames)
def _detect_pose(self, frame):
try:
frame_rgb = _to_uint8_rgb(frame)
input_image = HWC3(frame_rgb[..., ::-1])
resized_image = resize_image(input_image, self.resize_size)
render_shape = resized_image.shape[:2]
candidate, subset, _ = self.annotator.pose_estimation(resized_image)
pose = _build_single_person_pose(candidate, subset)
if pose is None:
return None
render_h, render_w = render_shape
pose["bodies"]["candidate"][:, 0] /= float(render_w)
pose["bodies"]["candidate"][:, 1] /= float(render_h)
pose["hands"][:, :, 0] /= float(render_w)
pose["hands"][:, :, 1] /= float(render_h)
pose["faces"][:, :, 0] /= float(render_w)
pose["faces"][:, :, 1] /= float(render_h)
return {
"pose": pose,
"orig_shape": frame_rgb.shape[:2],
"render_shape": render_shape,
}
except Exception as e:
print(f"Error aligning pose frame: {e}")
return None
def forward(self, frames):
if len(frames) == 0:
return []
if self.ref_image is None:
return self._fallback_forward(frames)
try:
first_frame_rgb = _to_uint8_rgb(frames[0])
except Exception:
return self._fallback_forward(frames)
ref_rgb = _to_uint8_rgb(self.ref_image)
if ref_rgb.shape[:2] != first_frame_rgb.shape[:2]:
ref_rgb = cv2.resize(ref_rgb, (first_frame_rgb.shape[1], first_frame_rgb.shape[0]), interpolation=cv2.INTER_LANCZOS4)
ref_detection = self._detect_pose(ref_rgb)
if ref_detection is None:
return self._fallback_forward(frames)
detections = [None] * len(frames)
first_pose_idx = None
for frame_idx, frame in enumerate(frames):
detection = self._detect_pose(frame)
detections[frame_idx] = detection
if detection is not None:
first_pose_idx = frame_idx
break
if first_pose_idx is None:
return self._fallback_forward(frames)
first_detection = detections[first_pose_idx]
ref_ratio = ref_detection["render_shape"][1] / max(ref_detection["render_shape"][0], 1)
drive_ratio = first_detection["render_shape"][1] / max(first_detection["render_shape"][0], 1)
scales, offset = _compute_alignment_scales(ref_detection["pose"], first_detection["pose"], ref_ratio, drive_ratio)
ret_frames = []
for frame_idx, frame in enumerate(frames):
detection = detections[frame_idx]
if detection is None and frame_idx > first_pose_idx:
detection = self._detect_pose(frame)
detections[frame_idx] = detection
if detection is None:
frame_rgb = _to_uint8_rgb(frame)
ret_frames.append(np.zeros((frame_rgb.shape[0], frame_rgb.shape[1], 3), dtype=np.uint8))
continue
cur_ratio = detection["render_shape"][1] / max(detection["render_shape"][0], 1)
aligned_pose = _apply_pose_alignment(detection["pose"], scales, offset, ref_ratio, cur_ratio)
ret_frames.append(_render_pose_map_overscan(aligned_pose, detection["render_shape"], detection["orig_shape"], self.render_overscan, use_face=True))
return ret_frames
# Choose which version you want to use:
# Option 1: Body + Face only (original behavior)
class PoseBodyFaceVideoAnnotator(AlignedPoseBodyFaceVideoAnnotator):
"""Backward compatible class name - Body and Face only"""
# Option 2: Body + Face + Hands (if you want hands)
class PoseBodyFaceHandVideoAnnotator(OptimizedPoseBodyFaceHandVideoAnnotator):
"""Video annotator with hands, body, and face"""
def __init__(self, cfg):
super().__init__(cfg, num_workers=2, chunk_size=4)
# Keep the existing utility functions
import imageio
def save_one_video(file_path, videos, fps=8, quality=8, macro_block_size=None):
try:
video_writer = imageio.get_writer(file_path, fps=fps, codec='libx264', quality=quality, macro_block_size=macro_block_size)
for frame in videos:
video_writer.append_data(frame)
video_writer.close()
return True
except Exception as e:
print(f"Video save error: {e}")
return False
def get_frames(video_path):
frames = []
cap = cv2.VideoCapture(video_path)
fps = cap.get(cv2.CAP_PROP_FPS)
print("video fps: " + str(fps))
i = 0
while cap.isOpened():
ret, frame = cap.read()
if ret == False:
break
frames.append(frame)
i += 1
cap.release()
cv2.destroyAllWindows()
return frames, fps
|