HRNet / HigherHRNet-Human-Pose-Estimation

This is an official implementation of our CVPR 2020 paper "HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation" (https://arxiv.org/abs/1908.10357)
MIT License
1.35k stars 272 forks source link

Update CrowdPoseKeypoints.py #65

Open prakhargoyal106 opened 4 years ago

prakhargoyal106 commented 4 years ago

No module named 'crowdposetools'

Ankitjaiswal1201 commented 3 years ago

Here is how i solved the error-

When you compare both cocoapi and crowdpose, in cocoapi we have makefile but in crowdpose we do not have a makefile instead we have a install.sh file.

So to solve the error we have to execute install.sh file which can be done as follows-

(base) ankitjai@ankitjai-VirtualBox:~ /Downloads/HigherHRNet-Human-Pose-Estimation-master/crowdpose-api/PythonAPI$ chmod +x install.sh (base) ankitjai@ankitjai-VirtualBox:~ /Downloads/HigherHRNet-Human-Pose-Estimation-master/crowdpose-api/PythonAPI$ bash install.sh

You have to go to the correct PythonAPI path and run above 2 commands. This should solve this particular error.