Small filter improvements for mvor dataset.

This commit is contained in:
Daniel
2024-07-03 14:00:09 +02:00
parent 55f7069372
commit 7330b010b5
2 changed files with 110 additions and 110 deletions

View File

@ -306,7 +306,7 @@ def filter_poses(poses3D, poses2D, roomparams, joint_names, drop_few_limbs=True)
if average_length < 0.1:
drop.append(i)
continue
if average_length > 0.5:
if drop_few_limbs and average_length > 0.5:
drop.append(i)
continue