Tagged Questions

4
votes
1answer
962 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
474 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
347 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
667 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
901 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
691 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 ...
0
votes
2answers
46 views

What control do I need to show video from a webcam?

I want to integrate a webcam and I am using Aforge.NET framework. What control do I need to show the webcam video. My simple program will get the webcam, put it in the combo box and when i click 'ok', ...