Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

97
votes
10answers
54k views

How do I detect when someone shakes an iPhone?

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?
12
votes
4answers
11k views

How can I detect and track people using OpenCV?

I have a camera that will be stationary, pointed at an indoors area. People will walk past the camera, within about 5 meters of it. Using OpenCV, I want to detect individuals walking past - my ideal ...
4
votes
2answers
121 views

Detecting the user's spinning motion

I have been experimenting with the Core Motion framework to detect a user spinning around, say on a merry-go-round, holding an iphone in his hand. There are ways to detect the device motion around ...
4
votes
2answers
850 views

Python OpenCV: Detecting a general direction of movement?

I'm still hacking together a book scanning script, and for now, all I need is to be able to automagically detect a page turn. The book fills up 90% of the screen (I'm using a cruddy webcam for the ...
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 ...
3
votes
0answers
26 views

How to modify motion tracking in AS3

I have this amazing tutorial at http://www.computerarts.co.uk/tutorials/build-your-own-motion-tracking-system In the developer version, the tracker moves along the X-axis. I want it to stay stationary ...
3
votes
2answers
250 views

Motion detection and simple analysis with JavaScript?

Lets assume that I have a video playing in canvas and I want to do some basic analysis on that video like edge detection, motion detection and general motion direction. How should I approach this ...
3
votes
1answer
54 views

Efficiently way to compute colocation in space

Given a polyline P = {(x1, y1), ..., (xn, yn)} and another polyline Q = {(x1, y1), ..., (xm, ym)} (m not equal n, so polylines could have different length), colocation in space occurs when the ...
3
votes
2answers
549 views

Robust motion detection in C#

Can anyone point me to a robust motion detection sample/implementation? I know EMGU has a motion detection sample, but its not very good, even small changes in light will be falsely detected as ...
3
votes
2answers
2k views

How can you track motion using the iPhone's camera?

I saw that someone has made an app that tracks your feet using the camera, so that you can kick a virtual football on your iPhone screen. How could you do something like this? Does anyone know of ...
3
votes
3answers
1k views

Silverlight 4 Motion and Color Tracking using Webcam

Software Design Question: 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 ...
2
votes
1answer
347 views

Real-time Markerless Motion capturing using normal webcam

Is it possible to do "Markerless motion capturing" using a normal webcam, in real time? Are there any Open source frameworks available? I need to construct a 3d model which will be animated using the ...
2
votes
1answer
591 views

Android: Tracking mouse pointer movement

Assuming that I am using a generic mouse, is it possible to track the X and Y coordinates of the mouse pointer in android?
2
votes
1answer
217 views

using a double threshold

im using the Threshold method of the Bitmapdata object to make some motion buttons from a camera video source. It's working with 1 button (1 threshold on 1 rectangle, that is my button onscreen), ...
2
votes
0answers
464 views

Is android's motion event handling accurate?

Bug I have a weird bug in my piano app. Sometimes keys (and thus notes) hang. I did a lot of debugging and narrowed it down to what looks like androids inaccuracy of motion event handling: ...
2
votes
2answers
456 views

iPhone Shake event not properly working

I have this inside my viewController: - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event { if (event.type == UIEventSubtypeMotionShake) { NSLog(@"I have shaked"); ...
1
vote
1answer
56 views

Viewfinder Alignment

Is there anyone who worked with Viewfinder Alignment method? The first step (Edge Detection) is more or less understandable. It's written that "to extract edges we take the squared gradient of the ...
1
vote
1answer
224 views

How to count steps using an Accelerometer?

I have to develop the same functionality as of this Pedometer App I have observed this Pedometer app in very high detail. It's not a perfect pedometer app. For example, if you stay/sit at one place ...
1
vote
2answers
118 views

Toggle Flashlight when Motion is detected

I'm currently working on a small project, the meaning of the project/app is that if you were to shake the device the flash ignites. If you shake it again the light turns off! The first 3/4 toggles ...
1
vote
2answers
277 views

OpenCV: Detecting Movement in a tile

I would like to detect a movement in a tile of grids defined by N*N, I've tried a way which is done by http://stackoverflow.com/users/724461/andrey-kamaev and it shown in the following code, but the ...
1
vote
0answers
443 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
2answers
221 views

Polling the accelerometer/motion sensor in a MacBook Pro

There is a compiled command line application here that does this. Is there a Cocoa API to query this data?
1
vote
3answers
880 views

Opencv Motion detection with tracking

I need a robust motion detection and tracking in web cam's video frames. The background is always the same. The aim is to identify the position of the object, if possible without the shadows, but not ...
1
vote
2answers
180 views

Detect changes in a video

I have a friend whose job is to watch a video and take note of times when something happens on the screen. Most of the time it's just a blue/white screen, so there is very little change. It is an ...
1
vote
2answers
75 views

Quantify a change of direction given an array of 3d points

I am working on a piece of software written in Java that uses some processing.core library classes and simpleopenni to track a user's hand with the XBOX Kinect. What I am trying to figure out is how ...
1
vote
1answer
1k views

Java Motion Detection using webcam

I'm in a group that is trying to detect motion from people walking through a space and then for each separate person, to display a fish in an "aquarium". Right now we're using Processing and OpenCV to ...
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
0answers
54 views

How can I detect the movement of an rectangle in an image-stream efficiently?

I'd like to find an algorithm that can detect the movement (and movement-vector) of a rectangular area -- like scrolling a window would produce -- in an image-stream. Any ideas? :)
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
636 views

motion computation from video using pyglet in python

I am writing a simple motion detection program but i want it to be cross platform so im using python and the pyglet library since it provides a simple way to load videos in different formats ...
1
vote
1answer
1k views

webcam motion tracking with Python

Is there a simple way to track the motions of a single entity in a webcam feed? For example, I imagine a "hello world" app with an index finger used as mouse pointer. I realize there's still a lot of ...
1
vote
3answers
1k views

how to code simple motion tracking?

I am making a sentry turret with servos and a paintball gun and need to implement real time motion tracing to make the gun shoot anything that moves. how can I code this(any good algorithms, books, ...
1
vote
1answer
871 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
656 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 ...
1
vote
1answer
1k views

Detecting when modal view has been displayed

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 ...
0
votes
2answers
60 views

Motion Tracking vs Blob Tracking

Hi all I have a simple question that I have been struggling with....what is the difference, if any, between motion component (blob?) tracking and blob tracking? As defined by OpenCV. Does one cover ...
0
votes
0answers
25 views

iOS 5 Detect Repeating/Continuous Shake

I am writing an app that will need to detect a users shake not only once but continuously. The idea is that a sound would play once on a single shake and the sound would loop if the device is ...
0
votes
0answers
16 views

Custom PCB in bulk [closed]

Not exactly a programming question but still technical and was wondering if anyone had experience in the area. I need a small printed circuit board with a motion sensor and an LED that is battery ...
0
votes
1answer
16 views

Do UIEvent and UIEventTypeMotion intercept shaking gesture only ?

Reading Apple documentationi found that UIEventTypeMotion is useful only to intercept Shake. It sounds weird... but the only subtype on a UIEventTypeMotion is UIEventTypeMotionShake. I can't ...
0
votes
0answers
42 views

How to know if the movement is vertical? (using Optical Flow from OpenCV )

I'm quite new to Image Processing and I have this problem: I need to detect blinks real-time, and I have made it by an online template matching following some papers/guidelines. It works great but the ...
0
votes
2answers
35 views

Comparing two BitmapSources

Just wondering whether there is a way to compare two different bitmapsources in WPF? My scenario is that Im trying to make a simple motion sensor on a webcam and am just taking shots from the webcam ...
0
votes
1answer
47 views

OnTouchListener for the entire screen

I would like to have a OnTouchListener for the entire screen. I've tried attaching all views to an onTouchListener but generates bad touchEvents. I know this can be achived by overriding methods, what ...
0
votes
0answers
34 views

Free software wanted to batch process surveillance cams videos to extract fragments with motion [closed]

I have a lot surveillance cams videos. They are lengthy and they are full of static pictures, but they also contain few short fragments with moving objects. I'm looking for an utility wich I can feed ...
0
votes
0answers
121 views

“motion” program in ubuntu: snapshots in motion detection are generated with strips

I have a security system with the program "motion", a bt878 Card and 4 analogic cameras, all working fine. The problem is when I setup with motion detection, some snapshots of the cameras are stored ...
0
votes
0answers
41 views

How do you make and recognize gestures?

I am using a web cam to get video feed and then performing motion tracking on this video feed. The motion tracker returns (x,y) co-ordinates continuously. I want to use these (x,y) to recognize ...
0
votes
2answers
42 views

Raise event when movement occurs

I'm using the Kinect SDK to read data in from a Kinect. At the minute I have an application which simply saves an image from the stream every few seconds and starts recording audio, however I only ...
0
votes
2answers
316 views

Openni “One or more of the following nodes could not be enumerated”

I have installed the latest version of openni and NITE in the following order: Openni 1.3.4.6 unstable development edition x64 NITE 1.4.2.5 unstable develeopment edition x64 Avin2 sensor kinect x64 ...
0
votes
0answers
194 views

Detect Hand using OpenCV

I want to use openCV to detect when a person raises or lowers a hand or both hands. I have looked through the tutorials provided by python opencv and none of them seem to do the job. There is a camera ...
0
votes
1answer
131 views

Opencv C++ finding movement in a thresholded image

I am using openCv with C++ and I am trying to find a moving ball under different lighting conditions. So far I am able to filter an image by thresholding it using HSV color space. The problem with ...
0
votes
1answer
145 views

How to detect onLongClick ACTION_UP event?

I have an image which implements both OnClickListener and OnLongClickListener. In the OnLongClickListener at press down (ACTION_DOWN) I start a timer. I want to cancel it at ACTION_UP. Now, if I ...

1 2