brjathu / PHALP

Code repository for the paper "Tracking People by Predicting 3D Appearance, Location & Pose". (CVPR 2022 Oral)
Other
259 stars 38 forks source link

Effect of `GHOST` in render_type #4

Closed sdy-ny closed 2 years ago

sdy-ny commented 2 years ago

Hi, does final_visuals_dic in demo_online.py contain all the ghost detections by default?

I thought each track would have ghost detections up to max_age after it disappears, but it seems that it's not the case. Could you explain how long the ghost detections are kept for?

Thanks!

brjathu commented 2 years ago

Can you try, GHOST_SMOOTH.

Yes, final_visuals_dic stores all the information. But I edited the code yesterday to delete it after every frame to speed it up. Please delete this line, if you want to store it. https://github.com/brjathu/PHALP/blob/0502c0aa515292bc70e358fe3b3ec65e63215327/demo_online.py#L229

sdy-ny commented 2 years ago

Thank you!