How to implement voice controlled wxWidgets application

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
surya_rai87
In need of some credit
In need of some credit
Posts: 3
Joined: Tue Aug 16, 2011 12:03 pm

How to implement voice controlled wxWidgets application

Post by surya_rai87 »

Hi,

I have developed an application in wxWidgets in which there is lots of controls are implemented which will be executed by menu,
check boxes, radio buttons etc...

Now I want that i can give these inputs (like i can select any radio button or check box or any value in drop down boxes)and execute those with my voice via head phone connected with my windows system.But I am not sure how to implement this.


Can anybody please help me out from this issue so that i can make my application voice controlled application in which we
do not require to select any option with mouse etc..we just can do it with our voice via Head set connected to the system.

Thanks In Advance
User avatar
evstevemd
Part Of The Furniture
Part Of The Furniture
Posts: 2409
Joined: Wed Jan 28, 2009 11:57 am
Location: United Republic of Tanzania

Re: How to implement voice controlled wxWidgets application

Post by evstevemd »

I'm not an expert so take my advice with care. I think you need speech-to-text library. Then from text you can easily proceed!
I have certainly never thought of such a thing. So google might be a good place to start
Chief Justice: We have trouble dear citizens!
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
Auria
Site Admin
Site Admin
Posts: 6695
Joined: Thu Sep 28, 2006 12:23 am
Contact:

Re: How to implement voice controlled wxWidgets application

Post by Auria »

I am not an expert on this either. But maybe you can use one of those applciations made for visually-impaired people? All major OS, as far as I know, now come with ways to control applications with the voice. I don't know what would be needed to make a wx app friendly with those though
"Keyboard not detected. Press F1 to continue"
-- Windows
surya_rai87
In need of some credit
In need of some credit
Posts: 3
Joined: Tue Aug 16, 2011 12:03 pm

Re: How to implement voice controlled wxWidgets application

Post by surya_rai87 »

Auria wrote:I am not an expert on this either. But maybe you can use one of those applciations made for visually-impaired people? All major OS, as far as I know, now come with ways to control applications with the voice. I don't know what would be needed to make a wx app friendly with those though

Thanks evryone..i will try your suggestion.
But i need some more information as if there is any driver or interface for making voice controlled wxWidgets application etc..
User avatar
doublemax
Moderator
Moderator
Posts: 19115
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: How to implement voice controlled wxWidgets application

Post by doublemax »

There is no dedicated support for that in wxWidgets.

Under Windows, SAPI is what you need:
http://msdn.microsoft.com/en-us/library ... 85%29.aspx

Some MSW samples that could get you started:
http://www.codeproject.com/KB/audio-vid ... chReg.aspx
http://www.codeproject.com/KB/audio-video/tambiSR.aspx

I don't know about other platforms.
Use the source, Luke!
catalin
Moderator
Moderator
Posts: 1618
Joined: Wed Nov 12, 2008 7:23 am
Location: Romania

Re: How to implement voice controlled wxWidgets application

Post by catalin »

Take a look at AxTk.
surya_rai87
In need of some credit
In need of some credit
Posts: 3
Joined: Tue Aug 16, 2011 12:03 pm

Re: How to implement voice controlled wxWidgets application

Post by surya_rai87 »

catalin wrote:Take a look at AxTk.

I went through this but i am not sure how to use this.Could you please refer me some demo project for the same..in which voice controlled wx application are shown.

Thanks
protocol
Moderator
Moderator
Posts: 680
Joined: Wed Jan 18, 2006 6:13 pm
Location: Dallas, TX
Contact:

Re: How to implement voice controlled wxWidgets application

Post by protocol »

I'm not sure if you actually looked, but here is the samples:
http://www.anthemion.co.uk/axtk/
/* UIKit && wxWidgets 2.8 && Cocoa && .Net */
QuRegExmm
wxPCRE & ObjPCRE - Regex It!
Post Reply