active questions tagged motion-detection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:14:55Z http://stackoverflow.com/feeds/tag/motion-detection http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933848/how-to-setup-motion-detection-using-aforge 0 How to setup motion detection using AForge? ropstah 2009-12-19T19:05:16Z 2009-12-19T19:54:23Z <p>Hi,</p> <p>i'm trying to setup motiondetection using the AForge.NET framework. I'm using the information provided on <a href="http://www.aforgenet.com/framework/features/motion%5Fdetection%5F2.0.html" rel="nofollow">this</a> page.</p> <p>I've setup a DirectShow videostream which feeds a part of my desktop through a stream. I can choose this stream in the sample videoplayer project which is provided with AForge. (And I see my desktop through the player).</p> <p>However, when I run the code below I receive a NullReferenceException. What am I missing?</p> <pre><code> // New frame received by the player private void videoSourcePlayer_NewFrame( object sender, ref Bitmap image ) { if (this.detector.ProcessFrame(image) &gt; 0.02) { Console.WriteLine("Motion"); } else { Console.WriteLine("No motion"); } } </code></pre> <p>The <code>detector</code> is initialized as private class variable when a videostream is chosen.</p> <pre><code> private MotionDetector detector; private BlobCountingObjectsProcessing motionProcessor; // Open video source private void OpenVideoSource( IVideoSource source ) { BlobCountingObjectsProcessing motionProcessor = new BlobCountingObjectsProcessing(); MotionDetector detector = new MotionDetector( new SimpleBackgroundModelingDetector(), motionProcessor); } </code></pre> http://stackoverflow.com/questions/1875792/silverlight-4-motion-and-color-tracking-using-webcam 1 Silverlight 4 Motion and Color Tracking using Webcam bugBurger 2009-12-09T18:21:03Z 2009-12-11T16:18:43Z <p>Software Design Question:</p> <p>Since silverlight 4 is out, and it has webcam support, does anyone know the code to track the motion and color ? Is SL4 writable bitmap is the first step to start wrting the code ? </p> <p>I wants to convert specific color motion into action in Silverlight. For example if you move red color pen in front of camera from left- > right it should scroll the picture from left to right.</p> <p>Any help will be appriciated</p> http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone 26 How do I detect when someone shakes an iPhone? Josh Gagnon 2008-09-29T20:14:59Z 2009-11-19T17:44:24Z <p>I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?</p> http://stackoverflow.com/questions/1116125/detecting-when-modal-view-has-been-displayed 1 Detecting when modal view has been displayed iPhone Guy 2009-07-12T14:33:36Z 2009-07-12T14:44:02Z <p>This is a fun one... I have an application that has a help screen and is displayed as a modal view. The main view has an action that occurs when the device is shaken. I do not want the action to occur (sounds are played) when the help screen has been displayed.</p> <p>I have tried a few things... here is my code:</p> <p>To display the help screen:</p> <pre><code>- (IBAction)helpButtonPressed:(id) sender { helpViewController = [[HelpViewController alloc] init]; [self presentModalViewController:helpViewController animated:YES]; } </code></pre> <p>To release the help screen:</p> <pre><code>- (IBAction)buttonPressed:(id) sender { [self dismissModalViewControllerAnimated:YES]; } </code></pre> <p>I tried the following with no success:</p> <pre><code>if ([helpViewController.view isHidden ]) { NSLog(@"Shake -- helpView is loaded"); } else { NSLog(@"Shake -- helpView is not loaded"); } if ([helpViewController isViewLoaded]) { NSLog(@"Shake -- helpView is loaded"); } else { NSLog(@"Shake -- helpView is not loaded"); } if ([self isViewLoaded]) { NSLog(@"Shake -- helpView is loaded"); } else { NSLog(@"Shake -- helpView is not loaded"); } </code></pre> <p>What I was thinking is if there is a function to allow me to detect if the help view is showing, I will return without playing the sounds when the device is shaken....</p> <p>Any ideas?</p> http://stackoverflow.com/questions/183739/resources-for-working-with-video-feeds-in-c 4 Resources for working with video feeds in C# Echostorm 2008-10-08T16:46:43Z 2008-10-08T18:33:11Z <p>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. </p> <p>Does anyone have some good resources or similar projects that I could use to get acquainted with the ins and outs? I'm using C# 3.5 with SP1 in VS2008</p>