Liu Zhiyuan
Liu Zhiyuan

Reputation: 569

Is it possible to detect human body parts from images?

Is it possible to detect body parts such as head, shoulder, hand, leg, foot from a single image with OpenCV or other image processing libraries?

Front

Side

If possible please provide examples or tutorials, thanks in advance.

Upvotes: 0

Views: 3342

Answers (1)

Thomas Pinetz
Thomas Pinetz

Reputation: 7148

Human body part detection is an open field in research. Therefore it is not as easy as adding some magic method from opencv. However there are some approaches that work reasonably well.

Here are some examples: http://202.118.75.4/lu/Paper/T-IP/Pose%20Estimation%20with%20Segmentation%20Consistency.pdf, http://www.wineyard.in/Abstract/mtech/DIP/2015/bp/15D013.pdf, https://lirias.kuleuven.be/bitstream/123456789/511304/2/3962_postprint.pdf

Anyways it is definitely tricky to get this right and it will certainly fail in some cases.

Upvotes: 1

Related Questions