2

I am doing a project in opencv. I want to control the car through hand gestures. Now can anyone please help me regarding how to connect my program with the game. what steps should I follow. So i can send the signals to car game.

Nicol Bolas
  • 449,505
  • 63
  • 781
  • 982
KhanUstaad
  • 223
  • 1
  • 2
  • 6
  • Well I have aleady recognized all the gestures needed to control the car. I just want to send the signal to the game. but i dont know how to do it – KhanUstaad May 31 '12 at 18:33
  • "how to connect my program with the game": What is "the game"? In general, games are programmed to respond to actual controllers: keyboards, mice, USB devices, etc. They usually aren't intended to take input from arbitrary programs. – Nicol Bolas May 31 '12 at 18:49
  • the game is need for speed. and i want to control it through hand gestures. And video is taken from Microsoft Kinect. And i am using Opencv for image processing – KhanUstaad May 31 '12 at 19:13
  • Please close this question, it's overly broad. @user1429181 Investigate the Windows' API: `SendMessage()` and `PostMessage()` to [send keys to another window](http://stackoverflow.com/a/10011814/176769). – karlphillip May 31 '12 at 21:21

1 Answers1

3

You gestures should be numbers. Each gesture is represented by a number.

You send those numbers as an output of your program. Your game uses numbers as input, and each number determines an action.

With your current description of the problem I cannot be more specific.

Jav_Rock
  • 22,059
  • 20
  • 123
  • 164