Questions tagged [gesture-recognition]

Anything related to gesture recognition, i.e. the process of recognizing the gestures of a human user by a machine.

Anything related to gesture recognition, i.e. the process of recognizing the gestures of a human user by a machine.

590 questions
0
votes
1 answer

Can't run kinect speech,pose and gesture recognition at same time

I am working on a project that uses kinect. I have this main project that uses three dll's. one dll is for speech recognition made in c++, other is for pose recognition made in c++, the third dll is for gesture recognition made in c#. Speech uses…
Fahad Rauf
  • 705
  • 2
  • 8
  • 17
0
votes
1 answer

How to know if UIPanGestureRecognizer comes from one display edge?

I'm trying to recognize an UIPanGestureRecognizer from display bottom edge, from my experience it could be easy just asking if the difference from x is too near from the bottom edge but when I'm debugging I have a lot of results with the…
specktro
  • 295
  • 1
  • 5
  • 12
0
votes
3 answers

Handling Touch Events on iOS devices

I am exploring the way touch events are handled on iOS devices. I referred the book: iOS Open Application Development. Working on that, I am overriding the mouseDown, mouseUp methods and simply displaying the co-ordinates in an alert box. However,…
0
votes
1 answer

why does GestureRecognizer not work on textview first time?

I have a textView to input some text or emotion. so I make another button to change the keyboard to custom emotion view, and I also use tap GestureRecognizer for when I want to change back to keyboard. I found every time I need to touch the button…
ZhouQi
  • 531
  • 1
  • 6
  • 16
0
votes
3 answers

Calculating a BoundingBox from a set of points

I really cant find any resource to know how to compute the bounding box of a set of points. I have a float/int array of points for which I wish to compute the bounding box ( I want to know all the four corners of the rectangle of the bounding box ).…
Aakash Anuj
  • 3,773
  • 7
  • 35
  • 47
0
votes
1 answer

How could i drag it by using Gesture?

By using Gestures, can i able to drag like this image ? I mean, have to drag as a tick mark . So for this onClickListener must be used. After it performs,then it should be able to open another screen finally in a display part. When i use my hand, i…
Achiever
  • 1,626
  • 10
  • 30
  • 54
0
votes
2 answers

How to make draggable UIView by swipe?

In my application, I have a screen with some information, belongs to specified date. I want to make a swipe effect, to drag screen to left and right, to change dates. I think, I should create 2 UIView (one with "tomorrow" date and second one with…
Andrey
  • 2,659
  • 4
  • 29
  • 54
0
votes
2 answers

Dynamic time warping to detect gestures using Kinect Motion Sensor

Is there any documentation explaining how should I use DTW (dynamic time warping) and with Kinect? I need to record (as in this demo) a gesture and later use the recorded gesture to apply a command to Simple Open-NI. I've downloaded KinectSpace code…
Jonathan Simon Prates
  • 1,122
  • 2
  • 12
  • 28
0
votes
1 answer

ASL Hand Gesture Recognition using OpenCV

we are making an ASL Hand Gesture Recognition program in C++ using OpenCV. http://en.wikipedia.org/wiki/American_Sign_Language (ASL). here's a list of the different hand gestures: http://en.wikipedia.org/wiki/File:ABC_pict.png i have read about…
Og Namdik
  • 823
  • 4
  • 14
  • 22
0
votes
1 answer

Android using hand gestures to move and zoom

I have an image that gets created once a button gets clicked; it gets created in the middle of the canvas, as I set it to do so: if(choosenImage != null) { c.drawBitmap(choosenImage, 0, 0, null); } I want to move and zoom the image using my…
John Jared
  • 790
  • 3
  • 16
  • 40
0
votes
1 answer
0
votes
1 answer

Use UIPanGestureRecognizer on the entire view to move a subview

The following creates a gesture recognizer that moves the entire view: UIPanGestureRecognizer * recognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; recognizer.delegate = self; [self.view…
soleil
  • 12,133
  • 33
  • 112
  • 183
0
votes
1 answer

iphone gesture/event similar to mouse enter in flash

I'm pretty new to IOS development. Let me explain my problem first. In Adobe Flash, there is an mouse event that enables me to detect mouse enter to a movieclip. So for example suppose i have a main container movie clip and inside it i have bunch of…
Lexicon
  • 473
  • 1
  • 3
  • 15
0
votes
2 answers

Allow a delay before the swipe

I am writing a card game. When users touch a card in their hand, the card they are touching slides out a little to clarify which one they are touching since they can have up to 18 cards in their hand and they are kind of small. What I want next is…
dontangg
  • 4,729
  • 1
  • 26
  • 38
0
votes
1 answer

Digit/Number Recognition Hand-written

Can anyone recommend a handwritten digit/number recognition library which I could use in c++/OpenGL. I need to recognise the digits/numbers in my OpenGL project written by a user.
Demian
  • 65
  • 2
  • 6