| View previous topic :: View next topic |
| Author |
Message |
h4xx0r n00bl37
Joined: 14 Mar 2008 Posts: 56
|
Posted: Mon Apr 07, 2008 5:34 am Post subject: Text recognition |
|
|
| It would be awesome if there was a way to use AHK to reconize text and respond to it. Like a interactive robot. |
|
| Back to top |
|
 |
Icarus
Joined: 24 Nov 2005 Posts: 440
|
Posted: Mon Apr 07, 2008 9:02 pm Post subject: |
|
|
you mean voice recognition?
perhaps there is an engine on the web that you can use to hook into ahk, maybe some project on sourceforge or something? |
|
| Back to top |
|
 |
Tuncay
Joined: 07 Nov 2006 Posts: 384 Location: Berlin
|
Posted: Mon Apr 07, 2008 10:36 pm Post subject: |
|
|
| Quote: | | you mean voice recognition? |
Something similiar, just for text from picture files. |
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Wed Apr 09, 2008 9:00 pm Post subject: |
|
|
For voice recognition you can search the forums, there is a script by Sean that does that.
For recognizing text (from images), search the forum for OCR (optical character recognitioning), there is an open source program called gocr.
HTH |
|
| Back to top |
|
 |
SpiderGames
Joined: 09 Jun 2008 Posts: 283 Location: Canada
|
Posted: Sun Jun 22, 2008 2:48 am Post subject: |
|
|
I have a program called GlovePIE. It has voice on it. If you say...
| Code: |
Key.F24 = Said("hi")
|
that meens when you say hi it will push F24.
Then u have auto hotkey open waiting for key F24 to do something.
Google GlovePIE to get it. _________________ http://www.spider-games77.piczo.com
Join the Elite few... |
|
| Back to top |
|
 |
5parx
Joined: 20 Jun 2008 Posts: 11 Location: Lakewood, Colorado
|
Posted: Thu Jun 26, 2008 12:02 pm Post subject: Re |
|
|
Didn't know there was a F24 on my keyboard.  _________________ Intelligence is power, and power is strength. But what is strength without a double-share of wisdom? |
|
| Back to top |
|
 |
TooLazyToLogin Guest
|
Posted: Thu Jun 26, 2008 3:11 pm Post subject: |
|
|
thats the point. It so u can't accidently acctivate it. if u run out of keys all yo uhave to do if say.
Key.F24 and Key.F23 = said("hi")
then in AH
keygetstate, F24, F24
keygetstate, F23, F23
keygetstate, F22, F22
keygetstate, F21, F21
if F24 = D
if F23 = D
If F22 = U
If F21 = U
....
u get the idea |
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 908 Location: The Interwebs
|
Posted: Thu Jun 26, 2008 3:44 pm Post subject: |
|
|
| TooLazyToLogin wrote: | thats the point. It so u can't accidently acctivate it. if u run out of keys all yo uhave to do if say.
Key.F24 and Key.F23 = said("hi")
then in AH
keygetstate, F24, F24
keygetstate, F23, F23
keygetstate, F22, F22
keygetstate, F21, F21
if F24 = D
if F23 = D
If F22 = U
If F21 = U
....
u get the idea |
Or,
F24 & F23::MsgBox, This should be much easier to use...? |
|
| Back to top |
|
 |
|