Image / Voice Recognition in Objective-C

I am developing an application with image and voice recognition. Do you have a source or idea how to do this?

Thanks, ZaldzBugz

+4
source share
3 answers

For speech recognition, use pocketsphinx. To do this, static libraries http://github.com/KingOfBrian/VocalKit for working on iphone were created.

+3
source

Xcode comes with speech recognition examples (in / Developer / Examples / Speech / Recognition), and the class you use is NSSpeechRecognizer .

+2
source

I can suggest you use OpenCV , well written in C / C ++, you can use it on the iPhone for computer vision and image processing.

+1
source

Source: https://habr.com/ru/post/1315763/


All Articles