Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

158
votes
7answers
99k views

Android - basic gesture detection

I've been battling to get 'fling' gesture detection working on my Android application today. I've been looking at these sources; Detect Gestures - Tutorial SDK docs Calculator Code Nothing has ...
18
votes
2answers
1k views

Using android gesture on top of menu buttons

What I want is to have an options menu where the user can choose to navigate the menu between: Touching a button and then pressing down on the trackball to select it Drawing predefined gestures from ...
18
votes
6answers
3k views

How does gesture recognition work?

In a multi-touch environment, how does gesture recognition work? What mathematical methods or algorithms are utilized to recognize or reject data for possible gestures? I've created some ...
13
votes
3answers
6k views

How to do Gesture Recognition using Accelerometers

My goal is to recognize simple gestures from accelerometers mounted on a sun spot. A gesture could be as simple as rotating the device or moving the device in several different motions. The device ...
12
votes
2answers
628 views

How to access Letter Recognizer API in Android?

I am creating a gesture application. In the Gesture class docs http://developer.android.com/reference/android/gesture/Gesture.html) it reads: "A user-defined gesture can be recognized by a ...
10
votes
3answers
6k views

UILongPressGestureRecognizer gets called twice when pressing down

I am detecting if the user has pressed down for 2 seconds: UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] ...
9
votes
3answers
5k views

Long press on UITableView

I would like to handle a long press on a UITableViewCell to print a "quick access menu". Does someone already did this ? Particularly the gesture recognize on UITableView ?
8
votes
1answer
248 views

Recognize numbers using gestures

I want to recognize numbers using gestures through coding. I've recognized using gesture library. Is there any possibility to recognize numbers perfectly? Please suggest any sample code.
8
votes
5answers
14k views

How to do pinch gestures on the iPhone?

How does one implement pinch gestures on the iPhone? I'm familiar with using touch events on the iPhone but I'm extremely lazy and don't want to re-invent the wheel for something as widespread as ...
7
votes
1answer
287 views

How to track ONE person with Kinect (trackingID)

I would like to track the first person, and use this person's right hand to navigate in the application that I made. I can take over the cursor, now I just want only one person being tracked. So ...
7
votes
1answer
156 views

Accelerometer-based gesture recognition

I'm developing an embedded accelerometer-based hand gesture recognition. Does anybody know about some free libraries to employ or to start from? I'm working with embedded linux and I'm looking for ...
7
votes
2answers
468 views

Store orientation to an array - and compare

I want to achieve the following: I want the user to be able to "record" the movement of the iPhone using the gyroscope. And after that, the user should be able to replicate the same movement. I ...
7
votes
2answers
767 views

Gesture Recognition In Android

I'm new to Android and I'm working on Gestures. I have a problem regarding how to recognise the text. When a user draws a letter or number that has to be recognised and has to be printed on the top of ...
7
votes
3answers
823 views

Simple circular gesture detection

I'm looking at a simple, programmatic way of detecting whether or not the user has drawn a circular shape. I'm working in C, but am happy to work from pseudo-code. A bit of Googling brings up a number ...
6
votes
1answer
657 views

Finger tracking / counting using OpenCV convex hull and Convexity Defect functions

Just a quick question. I have been working on a basic hand/ finger tracking code using OpenCV and the ConvexHull and ConvexityDefects method. Basically I am able to create a contour of the hand. I now ...
6
votes
1answer
209 views

Does having variations of gestures in gesture library improve recognition?

I'm working on implementing gesture recognition in my app, using the Gestures Builder to create a library of gestures. I'm wondering if having multiple variations of a gesture will help or hinder ...
6
votes
2answers
517 views

Swipe behavior for touch applications

I'm writing a manager for ActionScript to detect SWIPE gesture. Yes, there is API to work with native (OS) gesture already, but my plan is: so it would work even for singletouch screens (usual ...
6
votes
3answers
467 views

How to determine all line segments from a list of points generated from a mouse gesture?

Currently I am interning at a software company and one of my tasks has been to implement the recognition of mouse gestures. One of the senior developers helped me get started and provided ...
5
votes
2answers
239 views

How do I implement a wave gesture in kinect?

I would like to use a gesture, so the kinect can select the person with the gesture as the main player. After this he can control the PC. Selecting the person and giving them control is done. Now i ...
5
votes
2answers
1k views

Way to get beginGestureWithEvent/endGestureWithEvent if window isn't frontmost

Is there a way to get - (void)beginGestureWithEvent:(NSEvent *)event and - (void)endGestureWithEvent:(NSEvent *)event calls to a view even if the containing window is in the background? It ...
5
votes
3answers
3k views

Where can I learn/find examples of gesture recognitions streamed from Kinect, using OpenCV?

I have Kinect and drivers for Windows and MacOSX. Are there any examples of gesture recognitions streamed from Kinect using OpenCV API? I'm trying to achieve similar to DaVinci prototype on Xbox ...
5
votes
1answer
674 views

Why doesn't my UIImageView respond to taps?

I have a UIImageView that's being loaded from a NIB. I've hooked up a gesture recognizer to it to handle taps, but when I run the app, taps aren't being detected.
5
votes
5answers
3k views

Using webcam to track hand gestures

I wanted to develop a program which uses the webcam to track four colours and which are going to be on my index finger and thumb of both my hands and according to the gestures of my hand the computer ...
4
votes
4answers
141 views

Getting row position of listview on swipe

I know this type of question is asked before here. I have tried both gesture detector : wholelistview.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View v, ...
4
votes
3answers
207 views

What are some algorithms for symbol-by-symbol handwriting recognition?

I think there are some algorithms that evaluate difference between drawn symbol and expected one, or something like that. Any help will be appreciated :))
4
votes
1answer
413 views

Android: Two finger double tap possible to detect with GestureDetector?

question above. For me getPointerCount() is always 1, once a double tap is detected. private GestureDetector mGestureDetector; mGestureDetector = new GestureDetector(this, new MyGestureListener()); ...
4
votes
1answer
3k views

Android - swipe left|right . gesture detection

was trying to add this "gesture" function to my first program, and almost every search I did came to this thread: Android - basic gesture detection I was able to get it working.. but in my case, I ...
4
votes
4answers
4k views

Kinect 3D gesture recognition based on skeleton movements - What libraries exist?

What gesture recognition libraries (if any) exist for the Kinect? Right now I'm using OpenNI to record skeleton movements but am not sure how to go from that to triggering discrete actions. My ...
4
votes
2answers
1k views

Gesture problem: UISwipeGestureRecognizer + UISlider

Got a gesture related problem. I implemented UISwipeGestureRecognizer to get swipe left and right events and that is working fine. However the problem I'm facing is that the UISlider's I have in the ...
4
votes
2answers
1k views

How do I chain two UIGestureRecognizers together?

What I would like to do is to detect a swipe gesture followed by a pan gesture as part of the same touch sequence. So the user first swipes an object to carry out an action, then, while keeping their ...
4
votes
1answer
745 views

Do I need to release a gesture recognizer?

If I add a gesture recognizer to a table cell called cell, e.g.: UILongPressGestureRecognizer *_longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self ...
4
votes
6answers
10k views

Intercepting/Hijacking iPhone Touch Events for MKMapView

Is there a bug in the 3.0 SDK that disables real-time zooming and intercepting the zoom-in gesture for the MKMapView? I have some real simple code so I can detect tap events, but there are two ...
3
votes
2answers
123 views

Touch gesture recognition for phones without neural networks

I'm developing a gesture recognition program for a phone. What I am trying to accomplish is for users to draw their own "patterns", and then afterwards have these patterns do different things. ...
3
votes
0answers
52 views

Looking for guidance on multi-part graphical gesture recognition

I'm trying to research existing works in the area of recognizing complex graphical gestures, but struggling to find good search terms or clear documents in the field. For example, I might want to ...
3
votes
1answer
285 views

Gestures Prediction in Android

I am trying to work on Gestures but the problem is I'm not able to understand some of the lines of code in the sample which is present in the developer's website. Can anyone just explain me the ...
3
votes
2answers
152 views

Is Gesture lock is secure enough for financial applications on android/Iphone devices

We want to implement gesture lock for a financial based application on Android device. I would want to know if this mechanism is secure enough for this kind of aplication. any ideas?
3
votes
1answer
2k views

Kinect Gesture Recognition Theory

What are some of the algorithms involved in detecting user gestures based on skeleton movements? The ones I'm aware of include: a) Hidden markov models. You define a number of parameters for the ...
3
votes
1answer
5k views

Android: How to handle right to left swipe gestures

I want my app to recognize when a user swipes from right to left on the phone screen. How to do this?
3
votes
2answers
4k views

UIgestureRecognizer in a view inside a UIScrollView

Has anyone managed to get a UIGestureRecognizer to work on a UIView that is a subview of a UIScrollView? My callbacks never seems to get called. As a simple example, I want to have a paging ...
3
votes
1answer
612 views

Performance impact of gesture recognition in Delphi?

Delphi 2010 reportedly supports gestures for user interaction (mouse or touch interface), primarily through the Windows 7 gesture API. Will supporting gestures inherently incur a major performance ...
3
votes
3answers
541 views

Recognizing patterns when drawing over the iPhone screen

I'm trying to write a game where the user can issue commands by drawing certain patterns with his fingers..for example, if he draws a circle, an 'S' letter, an expiral, etc. I'm already familiar with ...
3
votes
1answer
951 views

Blackberry Storm Emulator - TouchGesture events not firing, how to get a Swipe to work?

Been playing with the Storm Emulator and the 4.7 JDE, for the life of me I can't figure out how to fire gesture events in the emulator. Below is the touch event code for the RIM sample app ...
2
votes
1answer
23 views

Gesture Recognition Algorithm - Kinect

I'm developing an application for the Kinect for my final year university project, and I have a requirement to develop a number of gesture recognition algorithms. I'd appreciate some advice on this. ...
2
votes
1answer
31 views

resample and normalize a numpy array for gesture recognition

i'm going to write a little application to recognize gesture (for now with the mouse). now, record the mouse coordinate in a numpy array of Point object (simple class with x and y attributes). for ...
2
votes
1answer
283 views

music recognition on windows phone 7.5 Mango

I'm using the beta Mango, there is a music recognition and voice recognition feature in Bing. How can I access to this service and apply its to my app? Any information or approach will be greatly ...
2
votes
2answers
325 views

hand gesture recognition with camera video in actionscript

I want to implement an flex application using actionscript 3: with the camera and the virture buttons(like a image) in the camera, one can move his hand to pass over the virture button field in order ...
2
votes
3answers
318 views

iOS Gesture recognition utilizing accelerometer (and gyroscope)

I would like to detect gestures on an iOS device using the accelerometer and perhaps the gyroscope. The Application should detect movements like drawing a circle or a rectangle in the air. I've found ...
2
votes
2answers
147 views

How to find Edges and Vertices of a hand drawn polygon

I would like to make a shape recognition program that would trace a mouse and record it's location at each 1/2 second. how could I use these points to find a rough polygon? In other words, if you just ...
2
votes
1answer
2k views

How to have a UISwipeGestureRecognizer AND UIPanGestureRecognizer work on the same view

How would you setup the gesture recognizers so that you could have a UISwipeGestureRecognizer and a UIPanGestureRecognizer work at the same time? Such that if you touch and move quickly (quick swipe) ...
2
votes
1answer
393 views

Gesture detector doesn't work with scrollable list activity

I have a simple application with two views, one is a TableView and the other is ListView. I use GestureDetector to detect the swipes across the screen similarly to how it is done here. Everything ...

1 2 3 4