Help with Speech recognition code please!
Microcontrolled
Posts: 2,461
Hi, I just CANNOT get this program to work. I have been working on a speech recognizer for Hanno's project and I have run into some trouble with (what I think is a final) prototype. When it "compresses" and compares the voice samples. it says that you sayed "right" no matter what you say. It is easy to use, try it for yourself. Just plug a Demo Board into a TV screen and follow the instructions on the screen.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Computers are microcontrolled.
Robots are microcontrolled.
I am microcontrolled.
But you·can·call me micro.
Want to·experiment with the SX or just put together a cool project?
SX Spinning light display·
Post Edited (microcontrolled) : 9/18/2009 11:55:07 PM GMT
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Computers are microcontrolled.
Robots are microcontrolled.
I am microcontrolled.
But you·can·call me micro.
Want to·experiment with the SX or just put together a cool project?
SX Spinning light display·
Post Edited (microcontrolled) : 9/18/2009 11:55:07 PM GMT
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Computers are microcontrolled.
Robots are microcontrolled.
I am microcontrolled.
But you·can·call me micro.
Want to·experiment with the SX or just put together a cool project?
SX Spinning light display·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
50 72 6F 6A 65 63 74 20 53 69 74 65
·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
--Steve
Propeller Tools
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Computers are microcontrolled.
Robots are microcontrolled.
I am microcontrolled.
But you·can·call me micro.
Want to·experiment with the SX or just put together a cool project?
SX Spinning light display·
If what you mean is really
then that's what you need to spell out in your program.
-Phil
I think the problem with your message and perhaps why it didn’t generate any response is that you simply stated you have a problem. You didn’t really ask a question or offer any insight to what you think was happening and then solicit some assistance with it. When following up on a post that has generated no responses it is often a good idea to look at the original post and ask yourself how you would have responded to it had you seen it from someone else. Perhaps then you can add a follow-up message to clarify your original needs. Take care.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
50 72 6F 6A 65 63 74 20 53 69 74 65
·
You're calling Main recursively. It sort of works because when rec is 7, you no longer call it. You could just put a REPEAT around the whole contents of Main to do what you seem to want to do.
You could simplify Main by putting the six almost identical word entry parts in a subroutine and passing them a string for the word to be entered and the address of where to put the compressed information, then just calling them in sequence like:
enterWord(string("right"),@right)
enterWord(string("left"),@left)
enterWord(string("up"),@up)
...
as you did not include the file "dual_ADC1.spin"
I was not able to compile your code
best thing to provide code is to use the archive-function
this will include ALWAYS ALL files that were needed to compile a top-objectfile
anyway I modified your code as suggested from mike
see attached file
best regards
Stefan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Computers are microcontrolled.
Robots are microcontrolled.
I am microcontrolled.
But you·can·call me micro.
Want to·experiment with the SX or just put together a cool project?
SX Spinning light display·