-
Notifications
You must be signed in to change notification settings - Fork 152
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
Fix Bug For python 3 #85
base: master
Are you sure you want to change the base?
Conversation
Getting error while running step1_pose.py : |
@noratap09 @thmoa opendr==0.77 , chumpy==0.70 , python==3.8.15 Traceback (most recent call last): |
I'm not sure maybe camera.pkl file incorrect or opendr bug Do you download and install SMPL and SMPLify in "videoavatars/vendor" folder my [run_step1.sh ]
I hope it helps |
Thanks for the reply. I was waiting for this. Let me check this out.
…On Thu, Jan 12, 2023 at 10:23 AM noratap09 ***@***.***> wrote:
home/shinigami/
I'm not sure maybe camera.pkl file incorrect or opendr bug
What data you used such as "female-1-casual"
download from https://graphics.tu-bs.de/people-snapshot
Do you download and install SMPL and SMPLify in "videoavatars/vendor"
folder
my [run_step1.sh ]
#!/bin/bash
if [ "$#" -le 1 ]; then
echo "usage: run_step1.sh <path_to_subject_directory> <output_directory> [options]" >&2
exit 1
fi
SUBJ="$1"
OUT="$2"
if [[ $SUBJ = *"female"* ]]; then
MODEL='--model vendor/smpl/models/basicModel_m_lbs_10_207_0_v1.0.0.pkl'
fi
python step1_pose.py $SUBJ/keypoints.hdf5 $SUBJ/masks.hdf5 $SUBJ/camera.pkl $OUT/reconstructed_poses.hdf5 $MODEL ${@:3}
I hope it helps
—
Reply to this email directly, view it on GitHub
<#85 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANMRLWERU64SSVQIK5NMQELWR6E5JANCNFSM52YC7O4Q>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Did you guys solve it ? I have that error too .
|
It can run but I didn't test the output correct .