Speech recognition and drawing
-
I want to make a program, i which, when a user SAYS "Draw circle", a circle should be drawn on the form.... i am working with windows forms c#. i am familiar with DrawCircle() method to draw and speechrecognizer rec.LoadGrammar(g); :)
Great, let us know when you finish.
No comment
-
I want to make a program, i which, when a user SAYS "Draw circle", a circle should be drawn on the form.... i am working with windows forms c#. i am familiar with DrawCircle() method to draw and speechrecognizer rec.LoadGrammar(g); :)
Excellent. I hope you write an article on it. Here's a couple of questions for you. 1. How do you know how big the circle has to be? 2. How do you know where to place the circle? You might want to flesh your spec out a bit.
Forgive your enemies - it messes with their heads
"Mind bleach! Send me mind bleach!" - Nagy Vilmos
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
-
Excellent. I hope you write an article on it. Here's a couple of questions for you. 1. How do you know how big the circle has to be? 2. How do you know where to place the circle? You might want to flesh your spec out a bit.
Forgive your enemies - it messes with their heads
"Mind bleach! Send me mind bleach!" - Nagy Vilmos
My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility
Give him a break. There is only so much design that can fit on a cocktail napkin. :-D
No comment
-
I want to make a program, i which, when a user SAYS "Draw circle", a circle should be drawn on the form.... i am working with windows forms c#. i am familiar with DrawCircle() method to draw and speechrecognizer rec.LoadGrammar(g); :)
Don't repost the same question in multiple forums.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak -
Don't repost the same question in multiple forums.
A guide to posting questions on CodeProject[^]
Dave KreskowiakMaybe he's trying to figure out how many times he can be disappointed.
-
I want to make a program, i which, when a user SAYS "Draw circle", a circle should be drawn on the form.... i am working with windows forms c#. i am familiar with DrawCircle() method to draw and speechrecognizer rec.LoadGrammar(g); :)
momo.pomo wrote:
i am familiar with DrawCircle()
You know more than I do; I only know of
DrawEllipse()
. :(Luc Pattyn [My Articles] Nil Volentibus Arduum
-
I want to make a program, i which, when a user SAYS "Draw circle", a circle should be drawn on the form.... i am working with windows forms c#. i am familiar with DrawCircle() method to draw and speechrecognizer rec.LoadGrammar(g); :)
I have a small article on the tool I used to move a tank via voice commands. http://boxhacker.com/blog/2011/11/22/speech-recognition-for-net/[^] Part 2 explains how I converted the speech into commands (parsing) and such: http://boxhacker.com/blog/2011/11/25/voice-parsing/[^] Its ok if you have time to train the speech recognition software, but out of the box stuff would require something more powerful. - Could help :-D