Tagged Questions

4
votes
1answer
958 views

Resources for working with video feeds in C#

I'm starting to get into a side project that I hope to pull in frames from several small IP cameras, perhaps do a bit of motion detection and redisplay them in a form with alerts. Does anyone have ...
1
vote
0answers
441 views

Motion detection regions for Aforge.Net

I am using AForge for motion detection and I know that motion regions can be set. Is it possible to make that it triggers only when there are motions in ALL the defined regions? If the above ...
1
vote
1answer
336 views

EmguCV hand dectection

I am creating a detection program in C# in a Windows Form Application and I am using the C# Wrapper EmguCV to handle the OpenCV library. In the Emgu package there are HaarCascades (which are XML files ...
1
vote
2answers
634 views

Faking thermal image camera with aforge or any other .net solution , emgucv, tbeta

I am simulating a thermal camera effect. I have a webcam at a party pointed at people in front of a wall. I went with background subtraction technique and using Aforge blobcounter I get blobs that I ...
1
vote
1answer
869 views

Faster way to perform rectangle merging based on their intersection

this is being used in a motion detection problem. Basically, I perform a motion detection algorithm on an image, and get a list of blobs, where each blob hopefully corresponds to an object that has ...
1
vote
4answers
654 views

Draw image on a form from a separate thread

I am currently working on a Windows.Forms application. It's basically a simple motion detection problem. I have a button on a form, that when pressed launches a background worker that does the ...