Click here to Skip to main content
Click here to Skip to main content

Motion detection using web cam

By , 9 Jun 2004
 

Sample Image - md01.jpg

Introduction

This text tries to clear out the mystery of how to make motion detection using web cam with C#. My friend Walied want to capture video to his office by a web cam for 24 hrs, but the problem is that the space required on hard-disk is very extreme. So, he asked me to make a way to save disk space. Walied proposed to make a motion-detection circuit (IR, Ultra sonic) and connect it to the PC serial port and check for input every period of time. If there is any input then run the record program and start to capture video. But I replied that it’s a bad way because the thief will run away before the slow computer requests a web cam to start capturing video.

So my idea was to take a picture from a web cam every period of time (make it the current picture) and compare it with a previous picture and if we find a big difference between them we will save both pictures else will free memory from the old picture and make the new picture the current picture.

But there are two big problems:

  1. How to talk with your web cam and grab frame (picture) from it?
  2. How to compare the two pictures?

Solution

  1. There are two ways to talk to a web cam:
    1. Use DirectX's component called DirectShow (but unfortunately, DirectX doesn't provide DirectShow component for C#. NETMaster made an assembly to face this problem in his article DirectShow.NET). //Elgitaro: check this.
    2. Use a 3RDPARTY like cam server (you can find it in Laurent Kempé 's article Dynamic Webcam Image).
  2. There are also two ways to compare 2 pictures:
    1. By comparing each pixel's color for both pictures.
    2. Using filters to detect edges, then object recognition...

    I think method (a) will work faster because we are talking about a period of 3 m secs.

Try

This is my algorithm:

algorithm-Drawing1.jpg

First, grab image from web cam called Old. Second, grab another image from web cam after a while, called Cur. Compare Cur & Old by comparing each pixel color. If difference is greater than tested value (according to the quality of your web cam & light system you are using is 60 or 50 Hz), then save the two pictures. Finally, make the old picture the Cur picture. Back to second step (infinite loop).

Let's write some code:

  • Get the camserver.dll & ijl15.dll (copy both files to c:\windows\system32 and then write regsvr32 camserver.dll in Start->Run to register the COM component).
  • Make new Windows project, paste three PictureBoxes in your form, paste two Buttons and finally, paste a Timer control and set its enabled property to false.

Your form looks something like this:

catchit.jpg

Catch

This program will not work as fast as I need because of the time for IO operation. So I use another technique to make it fast, by capturing a video to a panel and then grabbing image from it. This makes the application work faster as I need. This application is called CatchItV, and the first one called CatchIt (please try both and send me your comments).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Taha Amin
Team Leader http://www.linkdev.com/
Egypt Egypt
Member
B/OSS.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionUrgent!!!memberMember 858515426 Feb '12 - 18:39 
GeneralTUNERgroupnithinravi53526 Dec '10 - 22:55 
GeneralDear Mr. Taha Aminmemberuvik30 Sep '10 - 11:33 
QuestionIn which assembly i found camserver.dll & ijl15.dll ?memberSaira137 Apr '10 - 17:28 
Questionmotion detection using web cam in C#memberSaira137 Apr '10 - 4:34 
Generalmotion detection code with MATLABmemberasalrasul20 Mar '10 - 11:02 
GeneralRe: motion detection code with MATLABmembertrzik292 May '11 - 23:36 
Generalhelp Me!memberbrysamae26 Jan '10 - 20:02 
GeneralRe: help Me!memberuvik30 Sep '10 - 22:54 
GeneralDetect movement from left or from rightmemberALEXNG8828 Dec '09 - 2:21 
GeneralThanksmemberstartstarts15 Dec '09 - 2:02 
GeneralI need a help!memberthurein0916 Jul '09 - 3:08 
Questionneeds some advice for my FYP "Golf Swing Analysis Software"memberOak Soe26 Jun '09 - 5:45 
QuestionRetrieving the COM class factory for component with CLSID {FDD4C8C1-69C9-11D3-9DC8-525400E38CF9} failed due to the following error: 80040154memberalish06105 Apr '09 - 20:02 
QuestionHelp mememberfindingbooks1 Apr '09 - 21:41 
Generalnice articlememberarunvikc21 Feb '09 - 21:51 
GeneralRetrieving the COM class factory for component with CLSID {D6BA1539-8473-497C-92C3-8ECF63DAC0F3} failed due to the following error: 80040154.memberOmsk28 Dec '08 - 23:39 
QuestionRotating of WebCammemberYena papa16 Sep '08 - 4:04 
QuestionHow to get the Video Stream From CF Cameramembervison_xuan14 Apr '08 - 6:22 
Questionhow many percent changes in the video will consider motion?membertansc25 Feb '08 - 21:46 
QuestionHow to capture avi file? [modified]memberHady CV18 Nov '07 - 3:46 
AnswerRe: How to capture avi file?memberTaha Zayed18 Nov '07 - 4:14 
QuestionRe: How to capture avi file?memberHady CV18 Nov '07 - 4:39 
AnswerRe: How to capture avi file?memberTaha Zayed18 Nov '07 - 4:52 
GeneralRe: How to capture avi file?memberHady CV18 Nov '07 - 5:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 10 Jun 2004
Article Copyright 2004 by Taha Amin
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid