-
Notifications
You must be signed in to change notification settings - Fork 391
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
Is there a python3 version someone implemented? #135
Comments
I would also love to know! I know there are couple of efforts @russoale Thanks, A |
Sorry for the late response. Indeed you can find a python3 version but implemented with tensorflow 2 https://github.com/russoale/hmr2.0 |
Hello, do you know how to use mpi_inf_3dhp_to_tfrecords.py to convert mpi_inf_3dhp dataset? I failed because the code use jpg as input but the dataset I downloaded is consisting of videos. Do I need to use ffmpeg and write code to convert avi to jpg? |
Hi @jszgz, i just ffmpeg via bach script. #!/bin/bash
for sub in S*; do
for seq in $sub/*; do
for vid_in in $seq/*.avi; do
vid_name=$(basename $vid_in);
printf "start converting video %s\n" $vid_name
vid_out="$sub/imageFrames/${vid_name%.*}";
printf "in: %s out: %s\n" $vid_in $vid_out;
mkdir -p "$vid_out";
ffmpeg -hide_banner -loglevel error -stats -i "$vid_in" -qscale:v 1 "$vid_out/frame_%06d.jpg";
done
done
done |
Hi @russoale , I think what the code expect is like : And do you know how to recompute human3.6m dataset since the precoomputed link is not available now? |
Thanks for your great work!
I just want to know is there a python3 version someone implemented?
Thanks in advance!
The text was updated successfully, but these errors were encountered: