weigq / 3d_pose_baseline_pytorch

A simple baseline for 3d human pose estimation in PyTorch.
MIT License
367 stars 66 forks source link

A bug in reading the test data #19

Open gqliang opened 5 years ago

gqliang commented 5 years ago

When the required action is sittingdown, the current file will read both the sitting and sittingdown. This will affect the accuracy of the sequence of sittingdown So I suggest to add some lines to discriminate these two kinds of actions after the line 61 in the human36m.py.

if self.actions=='SittingDown' and act.endwith('g'): continue

weigq commented 5 years ago

Good, i will check that.