gpt4 book ai didi

python - 是否可以创建 mediapipe body 姿势地标和连接的动画 3D 散点图?

转载 作者:行者123 更新时间:2023-12-02 01:58:56 24 4
gpt4 key购买 nike

我目前正在开发一个项目,我正在使用 mediapipe 的 body 姿势估计库,我知道使用plotly我们可以创建动画3D散点图。我想知道是否可以使用plotly 创建由mediapipe 提供的 body 姿势地标和连接的动画图?

这与 mediapipe 的内置功能相同:

mp_draw.plot_landmarks()

但具有 plotly 的交互性和动画时间轴。

最佳答案

  • 看一下 mp_draw.plot_landmarks() 的代码,它使用 ma​​tplotlib。因此可以编写plotly版本
  • 完成此操作后,此版本将返回一个plotly图形。我确信可以进一步清理代码
  • 可以通过跨多个结果构建框架来构建动画

设置

import cv2
import math
import numpy as np
import plotly.express as px
from pathlib import Path
import mediapipe as mp

uploaded = {
Path.home()
.joinpath("Downloads")
.joinpath("thao-le-hoang-v4zceVZ5HK8-unsplash.jpg"): ""
}
uploaded = {str(k): i for k, i in uploaded.items()}

# Read images with OpenCV.
images = {name: cv2.imread(name) for name in uploaded.keys()}

mp_pose = mp.solutions.pose
mp_drawing = mp.solutions.drawing_utils
mp_drawing_styles = mp.solutions.drawing_styles

# Run MediaPipe Pose and plot 3d pose world landmarks.
with mp_pose.Pose(
static_image_mode=True, min_detection_confidence=0.5, model_complexity=2
) as pose:
for name, image in images.items():
results = pose.process(cv2.cvtColor(image, cv2.COLOR_BGR2RGB))

mp_drawing.plot_landmarks(
results.pose_world_landmarks, mp_pose.POSE_CONNECTIONS)

enter image description here

绘图plot_landmarks()

import pandas as pd
import plotly.graph_objects as go

_PRESENCE_THRESHOLD = 0.5
_VISIBILITY_THRESHOLD = 0.5


def plot_landmarks(
landmark_list,
connections=None,
):
if not landmark_list:
return
plotted_landmarks = {}
for idx, landmark in enumerate(landmark_list.landmark):
if (
landmark.HasField("visibility")
and landmark.visibility < _VISIBILITY_THRESHOLD
) or (
landmark.HasField("presence") and landmark.presence < _PRESENCE_THRESHOLD
):
continue
plotted_landmarks[idx] = (-landmark.z, landmark.x, -landmark.y)
if connections:
out_cn = []
num_landmarks = len(landmark_list.landmark)
# Draws the connections if the start and end landmarks are both visible.
for connection in connections:
start_idx = connection[0]
end_idx = connection[1]
if not (0 <= start_idx < num_landmarks and 0 <= end_idx < num_landmarks):
raise ValueError(
f"Landmark index is out of range. Invalid connection "
f"from landmark #{start_idx} to landmark #{end_idx}."
)
if start_idx in plotted_landmarks and end_idx in plotted_landmarks:
landmark_pair = [
plotted_landmarks[start_idx],
plotted_landmarks[end_idx],
]
out_cn.append(
dict(
xs=[landmark_pair[0][0], landmark_pair[1][0]],
ys=[landmark_pair[0][1], landmark_pair[1][1]],
zs=[landmark_pair[0][2], landmark_pair[1][2]],
)
)
cn2 = {"xs": [], "ys": [], "zs": []}
for pair in out_cn:
for k in pair.keys():
cn2[k].append(pair[k][0])
cn2[k].append(pair[k][1])
cn2[k].append(None)

df = pd.DataFrame(plotted_landmarks).T.rename(columns={0: "z", 1: "x", 2: "y"})
df["lm"] = df.index.map(lambda s: mp_pose.PoseLandmark(s).name).values
fig = (
px.scatter_3d(df, x="z", y="x", z="y", hover_name="lm")
.update_traces(marker={"color": "red"})
.update_layout(
margin={"l": 0, "r": 0, "t": 0, "b": 0},
scene={"camera": {"eye": {"x": 2.1, "y": 0, "z": 0}}},
)
)
fig.add_traces(
[
go.Scatter3d(
x=cn2["xs"],
y=cn2["ys"],
z=cn2["zs"],
mode="lines",
line={"color": "black", "width": 5},
name="connections",
)
]
)

return fig

尝试一下

plot_landmarks(
results.pose_world_landmarks, mp_pose.POSE_CONNECTIONS)

enter image description here

关于python - 是否可以创建 mediapipe body 姿势地标和连接的动画 3D 散点图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69265059/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com