 |
|
 |
Sir,please describe all the methods used in the project.I mean what a particular method is doing...
|
|
|
|
 |
|
 |
IF THERE IS DIFFERENCE IN PROGRAMMING USING THIS CODE FOR FINDING MOTIONS FROM THE VIDEO IN A TUNER CARD
|
|
|
|
 |
|
 |
You wrote :
-----------------------------------
There are two ways to talk to a web cam:
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.
Use a 3RDPARTY like cam server (you can find it in Laurent Kemp� 's article Dynamic Webcam Image
-----------------------------------------
Well, The CamServer.dll of Mr. Laurent Kemp is based on an old
technology of Microsoft called Video for Windows.
So there are actually 3 common ways to integrate to a WebCam !
1)DirectShow as you mentioned
2)VFW
3)a 3RD PARTY Component
For moving objects detection you better move to DirectShow or a component that use DirectShow insted of the old VFW.
Regards,
Yoav
|
|
|
|
 |
|
 |
i have read article "Motion detection using web cam".
|
|
|
|
 |
|
 |
In which assembly i found camserver.dll & ijl15.dll ?
|
|
|
|
 |
|
 |
Hi.
I need code for motion detection with MATLAB using webcam.
please help me...
|
|
|
|
 |
|
 |
Hy,
I have working in project and i need this algorthim.I make the capture of image,i had save it at disk,i put it some filters ...but i really need a easy algorthim to recognise the motion,......in fact I want to do a virtual mouse.
Thanks ....
|
|
|
|
 |
|
 |
what uses and application did you use?
can we use this in VisualBasic6.0?
|
|
|
|
 |
|
 |
Yes, You can use VB6 to conect to this component.
|
|
|
|
 |
|
 |
Hi,
This is an excellent article. I would like to try to detect a movement from left or from right.
My idea is to check the coordinate changes. When the changes from 0 - say, 155 I define the action from left to right. On the contrary, if the first few coordinate changes from 156-288, I define it is from right to left. I tried to modify the code below
for (int y = 0; y < size.Y; y++)
{
Pixel* pPixel = PixelAt(0, y);
Pixel* pPixel2 = PixelAt2(0, y);
Pixel* pPixel3 = PixelAt3(0, y);
for (int x = 0; x < size.X; x++)
{
if(!(pPixel->green==pPixel2->green))//((pPixel->red==pPixel2->red)))//&&(pPixel->green==pPixel2->green)&&(pPixel->blue==pPixel2->blue)))
{
pPixel3->red = pPixel2->red;
pPixel3->green = pPixel2->green;
pPixel3->blue = pPixel2->blue;
percent++;
coodx = x;
coody = y;
}
pPixel++;
pPixel2++;
pPixel3++;
}
}
The coodx and coody always give me the same value. Am I right to do so??
Please advise I am new in motion detection
thanks
Alex
|
|
|
|
 |
|
 |
Nice work!
Wander in Man-Made Wonder
|
|
|
|
 |
|
 |
I'm doing the project about motion dection and send MMS... do u have any idea how to plug in to your software?
|
|
|
|
 |
|
 |
Hi Taha,
I am Oak Soe, a final year Software Engineering student from Asia Pacific Institute of Information Technology, Malaysia. I got your contact as I went through your articles in Code Project and I am very impressed with your skills and knowledge. I am planning to develop a "Golf Swing Analysis Software", which will load the video file of a golf player making a swing. Then the software will analyze the swing in motion and point out any flaw in the swing based on predefined rule. I really want to develop software as my final year project since I am a great fan in Golf. However, I am quite new in this technology. I am very enthusiastic and ready to learn whatever I need to implement this system. A piece of advice or guidance from you will be very helpful. Thank you very much.
Regards,
Oak Soe.
Here is my email: oaksoekyaw@gmail.com
|
|
|
|
 |
|
 |
I am trying to develop application for online voice chat .... in
and i getting this ....
how to solve this problem ...
in my project i am providing facilities for text chat and audio chat and also trying to develop vedio conference ..but not started ... i stuck with this error while i run audio chat ... please help ... i am trying to resolve from couple of days ...
Thanks for any help ...
|
|
|
|
 |
|
 |
Am using ur program of motion detection in my project so can u please tell me what algorithm u r using in this????? My mail id is ssukumarmca@yahoo.com..... i'll be waiting for ur reply.......
With Regards & Thanks:
Sukumar.S
|
|
|
|
 |
|
 |
hey brother your atrticle is nice..
actualy i m doing a project like thz..
i want webcam to capture some 5 or 6 pics automatically when click 2 capture and then compare the pics...is thz available..help me pls..
thnk u.
|
|
|
|
 |
|
 |
Hi, when i start debuging i take this error message: Retrieving the COM class factory for component with CLSID {D6BA1539-8473-497C-92C3-8ECF63DAC0F3} failed due to the following error: 80040154.
How should I solve this problem?
|
|
|
|
 |
|
 |
Hello,
is it possible to rotate the WebCam Stream? Im' working with some couple of Cameras and they are fixed on a frame. To control multi Cameras at the same time was succesful, but some of them have vertically fixed on the frame, so I just see the motion pictures which turned to 90 grad to left(or right).
Thanks.
|
|
|
|
 |
|
 |
As you known,I am a beginner of a c#.net,Nowdays I am working on a project of Video Communication between two PDA.However,I am puzzled of how to get the video stream from the cf camera.I would be very appricated if you could help me.
(Sorry,my english is not very good).
|
|
|
|
 |
|
 |
can someone please help me?
i try the CatchItV. It can run but with just a little changes in the video, that is cause by the wind flow, it detect as motion. Because of this, many images had saved.
i need a motion detection program which will save the image if about 10 to 20% changes.
and also how many percent changes will consider as motion?
can someone please tell me how to solve this problems?
thanks in advance.
regards,
tansc
|
|
|
|
 |
|
 |
Hi, sorry for my bad english.
I tried to capture avi file when motion detected.
But I'm stucked, because the media subtype in SetupGraph() of mainform.cs is RGB24, if we want to capture avi, we use subtype.avi, wasn't it?
What I want to do is, capture avi when motion detected, stop capture avi when there are no motion detected, and like that continuously.
So, the motion detection detect all the time.
Anyone have an idea?
thanks.
my e-mail: hady.cv@gmail.com
-- modified at 9:55 Sunday 18th November, 2007
|
|
|
|
 |
|
|
 |
|
 |
thanks for your reply bro Taha. I'd contact your email: Taha_Zayed@gawab.com.
Did you received my e-mail?
What's your e-mail exactly, bro Taha?
I think I really need your help. This is for my graduate project.
I'd ever contact you long time ago, do you still remember? But, it was long time ago..
Can we done the task just using dshownet, bro Taha?
Do you have any idea?
I really got stucked for several weeks.
I must chase the examination before this end of nevember.
Thanks for your quick reply.
I'm so glad..
Hady
|
|
|
|
 |
|
|
 |
|
 |
Thanks bro Taha, I'll forward my sent e-mail to you, bro Taha...
|
|
|
|
 |