Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to visualize the 3D pose? #9

Open
tsbiosky opened this issue May 19, 2023 · 2 comments
Open

How to visualize the 3D pose? #9

tsbiosky opened this issue May 19, 2023 · 2 comments

Comments

@tsbiosky
Copy link

May I ask how to visualize the 3D pose like demo , and in results of mmWave Radar like "random_split_protocol1.npy" is that pose prediction result ? Which pretraned model should I load to reproduce this result ? Thanks

@SizheAn
Copy link
Owner

SizheAn commented May 20, 2023

Under model/mmWave/results, the .npy is only the MPJPE and PA-MPJPE metric result. To get the 3D key point, you may want to check aligned_data/pose_labels/subjectx.cpl. For example,

import pickle
temp = pickle.load(open('aligned_data/pose_labels/subject1_all_labels.cpl', 'rb'))
print(temp['radar_est_kps'].shape)

You then should see all the radar estimated 3D kps results. To plot it, you can use any 3D scatter plot tools in python or matlab.

@tsbiosky
Copy link
Author

Under model/mmWave/results, the .npy is only the MPJPE and PA-MPJPE metric result. To get the 3D key point, you may want to check aligned_data/pose_labels/subjectx.cpl. For example,

import pickle
temp = pickle.load(open('aligned_data/pose_labels/subject1_all_labels.cpl', 'rb'))
print(temp['radar_est_kps'].shape)

You then should see all the radar estimated 3D kps results. To plot it, you can use any 3D scatter plot tools in python or matlab.

Thank you for your reply! But I'm still confused about how to get predicted 3D pose from radar point cloud input , I tried the eval.py and get the eval_result.pkl but there are only 'video-id', 't-start', 't-end', 'label', 'score' .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants