fabro66 / GAST-Net-3DPoseEstimation

A Graph Attention Spatio-temporal Convolutional Networks for 3D Human Pose Estimation in Video (GAST-Net)
MIT License
312 stars 70 forks source link

How can I calculate the speed of processing for the algorithm? e.g. calculate FramesPerSecond. #30

Open mamdouh97 opened 3 years ago

mamdouh97 commented 3 years ago

I need to compute how many frames can the algorithm process in a second. What script is responsible for calling the four blocks (Yolo, SORT, HRNet, GAST)?

guerrifrancesco commented 3 years ago

Hi. The blocks are not called in parallel but in sequence. For example: first YOLO computes every frame of the video and gives results, then HRNet starts to elaborate each frame. At the end of HRNet work for each frame, GAST starts.
So, if you want to have an fps value you need to start from the main script and then add your fps calculations singularly for each block.

vicentowang commented 2 years ago

@rirri93 can you give the script for real time 3d pose estimation of all pipline as your demo video demonstrated ?