Pose-Group / DCPose

This is an official implementation of our CVPR 2021 paper "Deep Dual Consecutive Network for Human Pose Estimation" (https://openaccess.thecvf.com/content/CVPR2021/papers/Liu_Deep_Dual_Consecutive_Network_for_Human_Pose_Estimation_CVPR_2021_paper.pdf)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

different video frame,same target?

LiuJiaji1999 opened this issue · comments

I would like to ask, yolo only can detect target in a single frame .when defining clip i(p,c,n),by expanding the bounding box by about 25%, the same target between frames at different intervals is cropped. How do you determine the different positions of the same target in different frames? How to cut it?

In a video sequence, the same target is in different frames, and the position changes are quite obvious.

The Pose Temporal Merger (PTM) can aggregate the heatmaps of frames f_p, f_c, and f_n. The Pose Residual Fusion module can also capture the motion dynamics. These are computed based on different positions. Our paper also assumes that the changes between two consecutive frames are not significant.

thanks,these days i try to run the code, at the begining I built it according to your operating environment, but when installing DCN, it prompted a version error, so I set up such an environment according to my own GPU,my enviroment is ubuntu18.04+ cuda11.4 +torch1.9, GPU is 3080,And install DCN is finish,but when i run video.py,it hint :importError,libcudart.so.10.0 cannot open shared object file:no such file or directory???Crazy, environmental problems prevent the next step

o k, the version of your pytorch is very high. we use the Pytorch1.5. Deformable convolutions have been intergated to the Pytorch1.8.

okay, I try to lower the version,thank you .

(ubuntn18.04+cuda10.2+pytorch1.7)Problems encountered in compiling DCN, suggesting that the ninja cannot be used, so I found a way to modify torch/utils/cpp_extension.py ,modify ['ninja','-v]' to ['ninja','--v']. ['ninja','-version'] ['ninja','-V'],they all failed

I suggest you follow our "docs/installation.md" to set your environment. Under this configuration, compilation of DCNV2 can be performed successfully. We have not tested other versions of torch and torchvision.