Ask Your Question
0

Human motion detection using openCV-visual studio 2010

asked 2013-12-10 03:40:32 -0600

updated 2020-11-02 12:41:33 -0600

Hi all,

i want to develop an algorithm which detects human motion from a camera, using openCV under visual studio 2010. Could you please tell me which things should i look first(such as other posts, tutorials or codes), so i can understand the steps of building this algorithm. I am a new guy at openCV so any help from you would be appreciated.

Thanks.

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2013-12-10 10:18:53 -0600

I would try to detect persons using the person model of latent svm: http://docs.opencv.org/modules/objdetect/doc/latent_svm.html

or using HOG: http://docs.opencv.org/modules/gpu/doc/object_detection.html

Then, in each frame, I would locate the person in the frame, save the bounding box around it from frame to frame and check if the bounding box changes. If the location/size of the bounding box changes, then a motion is detected.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-12-10 03:40:32 -0600

Seen: 1,217 times

Last updated: Dec 10 '13