After a long time, my first real VB.Net project -
Makaveli93 - 27.08.2012
Well, this is a web-camera motion detector.
Currently it has an ability to detect motion, you can set the interval for checks, detection rate, detection deadzone, sound file played on detection, automatic web-camera capture saving in intervals and on motion detectio, remote FTP upload of the same capture images, detection log which will be saved in the application root folder or it will be able to be uploaded via FTP etc.
This is a quick preview, tell me what you think
Re: After a long time, my first real VB.Net project -
Raiden Dragneel - 27.08.2012
Um.. What does VB means?
Re: After a long time, my first real VB.Net project -
GeezleTV - 27.08.2012
Quote:
Originally Posted by Raiden Dragneel
Um.. What does VB means?
|
http://en.wikipedia.org/wiki/Visual_Basic_.NET
Re: After a long time, my first real VB.Net project -
playbox12 - 27.08.2012
And does it actually work? How do you detect the motion in the camera view?
Re: After a long time, my first real VB.Net project -
Duck - 27.08.2012
Quote:
Originally Posted by playbox12
And does it actually work?
|
This.
Re: After a long time, my first real VB.Net project -
Raiden Dragneel - 27.08.2012
He already tested it, there's some more stuff he needs to add.
Re: After a long time, my first real VB.Net project -
Shetch - 28.08.2012
Wow, looks pretty bad ass.
You could make it so that you can chose an alarm sound if there is movement detected.
Re: After a long time, my first real VB.Net project -
Makaveli93 - 28.08.2012
Quote:
Originally Posted by Shetch
Wow, looks pretty bad ass.
You could make it so that you can chose an alarm sound if there is movement detected.
|
That's already implemented, check the animation, it's the first "Browse" button under "Options" tab.
Quote:
Originally Posted by playbox12
And does it actually work? How do you detect the motion in the camera view?
|
Yup. It detects the difference from the webcamera capture, it checks the old captured frame with the new one, and if the color difference is higher than a certain value (you modify the formula with the detection rate slider), it detects a motion.