Which computer vision library & algorithm(s), for human behaviour analysis?

只谈情不闲聊 提交于 2019-12-04 20:51:42

From time to time some people come here and ask for help (or better, code) to solve some of the most difficult research problems in computer vision. Problems that were not solved by the most regarded academics and scientists. Sometimes, they ask for algorithms they've seen in SF movies. Then they leave frustrated, because OpenCV is "not friendly enough".

Now, seriously, if you are a team of PhDs in image processing, working on some genius project, you don't need advice from here. And if you aren't, the chance to do it is really low.

What you can do with reasonable resources and accuracy is to track people in the store: Use a moving-average background subtractor(available in OpenCV) to determine how the empty store looks like, and subtract that background from each frame, to see objects that come and dissapear. You can extract them with the blob analisys lib. A Kalman filter (or a simpler tracker) will help you keep track of the moving objects.

Good luck!

This is pretty hard problem. From my private conversations with these guys http://www.picar.us/ I recon they have some routines that detect human actions in the video, such as dancing or skateboarding. This stuff is not included in their open source library, but they might help you if you ask them nicely.

Human action recognition problem is usually treated using bag-of-words model representation and linear (or non-linear) supervised classification scheme using hundreds of labelled data.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!