iscas3dv / handpose-virtualview

Efficient Virtual View Selection for 3D Hand Pose Estimation AAAI 2022
Other
77 stars 9 forks source link

How's the inference speed for gpu and cpu? #2

Closed Stephenfang51 closed 1 year ago

Stephenfang51 commented 2 years ago

Nice work ! Have you made the speed comparison ? how's the speed for student network? Thanks !

ME495 commented 2 years ago

Thanks for your interest in our work. The inference speed on gpu is given in our paper. But the inference speed on the cpu cannot be calculated because we did not write the multi-view rendering code on the cpu.

Stephenfang51 commented 2 years ago

@ME495 Thanks for replying as for my understanding, if we train a student confidence Network and we can easily move the whole pipeline to another platform (like running on CPU) without CUDA support since we don't need to render the input depth img to pointcloud right ?

ME495 commented 2 years ago

No. Using the student confidence network also requires rendering the point cloud to other views. The difference between the student confidence network and the teacher confidence network is that the teacher confidence network renders a large number of views first and then selects views, but the student confidence network first selects a small number of views and then renders selected views.