DenisTome / Lifting-from-the-Deep-release

Implementation of "Lifting from the Deep: Convolutional 3D Pose Estimation from a Single Image"

Home Page:https://denistome.github.io/papers/lifting-from-the-deep

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using posenet for estimating, 2d detections and input it to 3d pose lifter

timtensor opened this issue · comments

Hi , I am currently looking into python implementationo posenet to do 2D pose estimation.
posenet-python. In it , the following decode single person. The following return the 17 keypoints instance_keypoint_coords and pose confidence. instance_keypoint_scores .

Where can we input to get the corresponding 3d estimation ?

Can it also be extended to videos ?

I'm not sure I get exactly what you are trying to do.
If by that you mean that you want to use their 2D estimations and this repository to lift them in 3D, then at line 144 of packages/lifting/_pose_estimator.py use can see where the pose + visibility is given to the 3D lifting module.
Just make sure that the format of the pose is the same as the one expected by our approach.