dineshreddy91 / Occlusion_Net

[CVPR2019]Occlusion-Net: 2D/3D Occluded Keypoint Localization Using Graph Networks
Other
139 stars 34 forks source link

Dataset format #15

Closed muaz-urwa closed 4 years ago

muaz-urwa commented 4 years ago

I downloaded the car fusion dataset. groundtruth files have this format:

335.11,609.53,1,0,1 254.76,604.49,2,0,2 302.03,609.53,3,0,1 213.17,605.12,4,0,2 337.63,589.05,5,0,2 299.82,586.62,6,0,2

I believe the format is: x,y, keypint_id, object_id, ?

I am not sure what the last digit in each row means. Is it occlusion/visibility ?

dineshreddy91 commented 4 years ago

yes. the last column is the visibility of the keypoint. If they are occluded or visible.

muaz-urwa commented 4 years ago

Thank you. Just to confirm, 1 means visible and 2 means occluded.