hot questions tagged motion-detection - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:00:47Zhttp://stackoverflow.com/feeds/tag?tagnames=motion-detection&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone26How do I detect when someone shakes an iPhone?Josh Gagnon2008-09-29T20:14:59Z2009-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-displayed1Detecting when modal view has been displayediPhone Guy2009-07-12T14:33:36Z2009-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-c4Resources for working with video feeds in C#Echostorm2008-10-08T16:46:43Z2008-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>