I want to count number of people crossing a line from either side. I have a camera that is placed on ceiling and shooting for the floor where the line is (So camera sees just top of people heads; and so it is more of object detection than people detection).

Is there any sample solution for this problem or similar problems like this? So I can learn from them?

Edit 1: More than one person is crossing the line at any moment.

link|improve this question

1  
Are you sure you don't want to add any more tags to your question? – karlphillip Apr 27 '11 at 15:52
Actually I am a C# developer and I found Emgu which is a cross platform .NET wrapper for OpenCV. So I am going to use C#. But I thought it would be inappropriate to add other tags like C#. And I appreciate if you suggest other tags; thanks in advance. – Kaveh Shahbazian Apr 27 '11 at 17:04
There you go, add: C#, Emgu, video-processing – karlphillip Apr 27 '11 at 17:07
Is there some reason you must use OpenCV and a video camera? Infrared photodetectors that do exactly what you describe are available at hardware stores for under $100. – Dour High Arch Apr 27 '11 at 19:54
@Dour High Arch There is no "must" here. If it is as you say then I should be happy and further guidance is more than appreciated! I did not know about those cameras and my only musts are described in the question: The line and the moving circles (people heads, maybe covered by hat or something). Thanks again! – Kaveh Shahbazian Apr 27 '11 at 20:21
show 2 more comments
feedback

2 Answers

up vote 2 down vote accepted

If nothing else but humans are subject to cross the line then you need not to detect people you only have to detect motion. There are several approaches for motoin detection.

Probably the simplest one fits your goals. You simply calculate difference between successive frames of video stream and this way determine "motion mask" and thus detect line crossing event

As an improvement of this "algorithm" you may consider "running average" method.

To determine a direction of motion you can use "motion templates".

In order to increase accuracy of your detector you may try any background subtraction technique (which in turn is not a simple solution). For example, if there is some moving background which should be filtered out (e.g. using statistical learning)

All algorithms mentioned are included in OpenCV library.

UPD:

link|improve this answer
I do not know the name of these algorithms in OpenCV or any kind of samples for it. Any hint would be very useful. Thanks – Kaveh Shahbazian Apr 27 '11 at 18:18
I've updated the answer. By the way reading sample code included to OpenCV library makes life easier – Andrey Apr 27 '11 at 18:40
Its rather upsetting how there is no open source EMG – Maxim V. Pavlov Feb 25 at 17:32
It is rather upsetting how there is no open source sample project that would just show how to do pedestrian tracking with OpenCV (or crossing the line at least). There are tons of videos on YouTube and a lot of theoretical talk on how it's done, but no actual implemented example. If you ever find one, please publish it somewhere. – Maxim V. Pavlov Feb 25 at 17:34
feedback

I'm not an expert in video-based cv, but if you can reduce the problem into a finite set of images (for instance, entering frame, standing on line, exiting frame), then you can use one of many shape recognition algorithms. I know of Shape Context which is good, but I doubt if it subtle enough for this application (it won't tell the difference between a head and most other round objects).

Basically, try to extract key images from the video, and then test them with shape recognition algorithms.

P.S. Finding the key images might be possible with good motion detection methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.