Human Body Detection in Javascript

Is there any JavaScript library for detecting the human body in images or videos? I know OpenCV in C ++ and Python, but I need it in JavaScript. There are also libraries for detecting faces, but I cannot find them for the whole body.

+6
source share
2 answers

Yes, there are OpenCV JavaScript ports that detect objects in images or video in real time: js-objectdetect (which contains the upper body classifier) ​​and HAAR.js.

Other classifiers can be found in the OpenCV distribution or on the Internet , they just need to be converted to another format before they can be read by JavaScript libraries.

+7
source

You can also use the same C ++ libraries integrated into NPAPI and then call C ++ functions from your javascript code.

0
source

Source: https://habr.com/ru/post/919042/


All Articles