I just found out this promising library and was wondering if it's suitable for
a simple letter recognition?
I would like to write a C++ program that recognizes letters from a given set
(for example A B C D).
So for example among these letters only recognize which one I am saying (only
one by one).
For example A A C A B...
The goal is to recognize the letter in real-time (when I say it).
But a "post" version that recognizes each letter individually after a whole
sequence may also be good.
Is cmusphinx suitable for my goal?
And if it is, any example of how to do that in C++? (I'm running linux and
already installed all the cmusphinx3 and pocketsphinx libraries)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Dear community,
I just found out this promising library and was wondering if it's suitable for
a simple letter recognition?
I would like to write a C++ program that recognizes letters from a given set
(for example A B C D).
So for example among these letters only recognize which one I am saying (only
one by one).
For example A A C A B...
The goal is to recognize the letter in real-time (when I say it).
But a "post" version that recognizes each letter individually after a whole
sequence may also be good.
Is cmusphinx suitable for my goal?
And if it is, any example of how to do that in C++? (I'm running linux and
already installed all the cmusphinx3 and pocketsphinx libraries)
yes
Yes, see the document about pocketsphinx API
http://cmusphinx.sourceforge.net/wiki/pocketsphinxmigration
See also this project https://sourceforge.net/projects/voicekey/
Oh, thank you for the information, both of you.
I'll investigate it.