├── .gitattributes ├── .gitignore ├── README.md ├── example-background ├── Makefile ├── Project.xcconfig ├── addons.make ├── background.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── background Debug.xcscheme │ │ └── background Release.xcscheme ├── bin │ └── data │ │ ├── .gitkeep │ │ └── dictionary.txt ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example-control ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── dictionary.txt ├── config.make ├── control.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── control Debug.xcscheme │ │ └── control Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example-echo ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── dictionary.txt │ │ └── verdana.ttf ├── config.make ├── echo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── echo Debug.xcscheme │ │ └── echo Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example-speak ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist ├── speak.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── speak Debug.xcscheme │ │ └── speak Release.xcscheme └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example-zoo ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── images │ │ ├── airplane.jpg │ │ ├── alligator.jpg │ │ ├── bear.jpg │ │ ├── blocks.jpg │ │ ├── book.jpg │ │ ├── buffalo.jpg │ │ ├── cake.jpg │ │ ├── camel.jpg │ │ ├── cat.jpg │ │ ├── chicken.jpg │ │ ├── computer.jpg │ │ ├── cow.jpg │ │ ├── crab.jpg │ │ ├── deer.jpg │ │ ├── dog.jpg │ │ ├── dolphin.jpg │ │ ├── duck.jpg │ │ ├── eagle.jpg │ │ ├── elephant.jpg │ │ ├── football.jpg │ │ ├── fox.jpg │ │ ├── frog.jpg │ │ ├── giraffe.jpg │ │ ├── goat.jpg │ │ ├── gorilla.jpg │ │ ├── hammer.jpg │ │ ├── hand.jpg │ │ ├── horse.jpg │ │ ├── house.jpg │ │ ├── kangaroo.jpg │ │ ├── leopard.jpg │ │ ├── lion.jpg │ │ ├── lizard.jpg │ │ ├── monkey.jpg │ │ ├── moon.jpg │ │ ├── necklace.jpg │ │ ├── ostrich.jpg │ │ ├── owl.jpg │ │ ├── panda.jpg │ │ ├── penguin.jpg │ │ ├── pigeon.jpg │ │ ├── rooster.jpg │ │ ├── sandwich.jpg │ │ ├── seal.jpg │ │ ├── shark.jpg │ │ ├── snake.jpg │ │ ├── spider.jpg │ │ ├── superman.jpg │ │ ├── taco.jpg │ │ ├── tiger.jpg │ │ ├── tree.jpg │ │ ├── whale.jpg │ │ └── worm.jpg │ │ └── verdana.ttf ├── config.make ├── openFrameworks-Info.plist ├── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h └── zoo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── zoo Debug.xcscheme │ └── zoo Release.xcscheme └── src ├── ofxSpeech.h ├── ofxSpeechRecognizer.cpp ├── ofxSpeechRecognizer.h ├── ofxSpeechSynthesizer.cpp └── ofxSpeechSynthesizer.h /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -crlf -diff -merge 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/README.md -------------------------------------------------------------------------------- /example-background/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/Makefile -------------------------------------------------------------------------------- /example-background/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/Project.xcconfig -------------------------------------------------------------------------------- /example-background/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpeech 2 | -------------------------------------------------------------------------------- /example-background/background.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/background.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-background/background.xcodeproj/xcshareddata/xcschemes/background Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/background.xcodeproj/xcshareddata/xcschemes/background Debug.xcscheme -------------------------------------------------------------------------------- /example-background/background.xcodeproj/xcshareddata/xcschemes/background Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/background.xcodeproj/xcshareddata/xcschemes/background Release.xcscheme -------------------------------------------------------------------------------- /example-background/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-background/bin/data/dictionary.txt: -------------------------------------------------------------------------------- 1 | red 2 | green 3 | black 4 | white -------------------------------------------------------------------------------- /example-background/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/config.make -------------------------------------------------------------------------------- /example-background/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-background/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/src/main.cpp -------------------------------------------------------------------------------- /example-background/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/src/testApp.cpp -------------------------------------------------------------------------------- /example-background/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-background/src/testApp.h -------------------------------------------------------------------------------- /example-control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/Makefile -------------------------------------------------------------------------------- /example-control/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/Project.xcconfig -------------------------------------------------------------------------------- /example-control/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpeech 2 | -------------------------------------------------------------------------------- /example-control/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-control/bin/data/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/bin/data/dictionary.txt -------------------------------------------------------------------------------- /example-control/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/config.make -------------------------------------------------------------------------------- /example-control/control.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/control.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-control/control.xcodeproj/xcshareddata/xcschemes/control Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/control.xcodeproj/xcshareddata/xcschemes/control Debug.xcscheme -------------------------------------------------------------------------------- /example-control/control.xcodeproj/xcshareddata/xcschemes/control Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/control.xcodeproj/xcshareddata/xcschemes/control Release.xcscheme -------------------------------------------------------------------------------- /example-control/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-control/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/src/main.cpp -------------------------------------------------------------------------------- /example-control/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/src/testApp.cpp -------------------------------------------------------------------------------- /example-control/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-control/src/testApp.h -------------------------------------------------------------------------------- /example-echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/Makefile -------------------------------------------------------------------------------- /example-echo/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/Project.xcconfig -------------------------------------------------------------------------------- /example-echo/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpeech 2 | -------------------------------------------------------------------------------- /example-echo/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-echo/bin/data/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/bin/data/dictionary.txt -------------------------------------------------------------------------------- /example-echo/bin/data/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/bin/data/verdana.ttf -------------------------------------------------------------------------------- /example-echo/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/config.make -------------------------------------------------------------------------------- /example-echo/echo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/echo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-echo/echo.xcodeproj/xcshareddata/xcschemes/echo Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/echo.xcodeproj/xcshareddata/xcschemes/echo Debug.xcscheme -------------------------------------------------------------------------------- /example-echo/echo.xcodeproj/xcshareddata/xcschemes/echo Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/echo.xcodeproj/xcshareddata/xcschemes/echo Release.xcscheme -------------------------------------------------------------------------------- /example-echo/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-echo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/src/main.cpp -------------------------------------------------------------------------------- /example-echo/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/src/testApp.cpp -------------------------------------------------------------------------------- /example-echo/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-echo/src/testApp.h -------------------------------------------------------------------------------- /example-speak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/Makefile -------------------------------------------------------------------------------- /example-speak/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/Project.xcconfig -------------------------------------------------------------------------------- /example-speak/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpeech 2 | -------------------------------------------------------------------------------- /example-speak/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-speak/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/config.make -------------------------------------------------------------------------------- /example-speak/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-speak/speak.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/speak.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-speak/speak.xcodeproj/xcshareddata/xcschemes/speak Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/speak.xcodeproj/xcshareddata/xcschemes/speak Debug.xcscheme -------------------------------------------------------------------------------- /example-speak/speak.xcodeproj/xcshareddata/xcschemes/speak Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/speak.xcodeproj/xcshareddata/xcschemes/speak Release.xcscheme -------------------------------------------------------------------------------- /example-speak/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/src/main.cpp -------------------------------------------------------------------------------- /example-speak/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/src/testApp.cpp -------------------------------------------------------------------------------- /example-speak/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-speak/src/testApp.h -------------------------------------------------------------------------------- /example-zoo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/Makefile -------------------------------------------------------------------------------- /example-zoo/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/Project.xcconfig -------------------------------------------------------------------------------- /example-zoo/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpeech 2 | -------------------------------------------------------------------------------- /example-zoo/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-zoo/bin/data/images/airplane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/airplane.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/alligator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/alligator.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/bear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/bear.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/blocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/blocks.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/book.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/buffalo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/buffalo.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/cake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/cake.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/camel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/camel.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/cat.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/chicken.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/computer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/computer.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/cow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/cow.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/crab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/crab.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/deer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/deer.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/dog.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/dolphin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/dolphin.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/duck.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/eagle.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/elephant.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/football.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/football.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/fox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/fox.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/frog.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/giraffe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/giraffe.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/goat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/goat.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/gorilla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/gorilla.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/hammer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/hammer.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/hand.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/horse.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/house.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/kangaroo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/kangaroo.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/leopard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/leopard.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/lion.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/lizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/lizard.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/monkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/monkey.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/moon.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/necklace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/necklace.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/ostrich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/ostrich.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/owl.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/panda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/panda.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/penguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/penguin.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/pigeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/pigeon.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/rooster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/rooster.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/sandwich.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/sandwich.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/seal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/seal.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/shark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/shark.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/snake.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/spider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/spider.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/superman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/superman.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/taco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/taco.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/tiger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/tiger.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/tree.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/whale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/whale.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/images/worm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/images/worm.jpg -------------------------------------------------------------------------------- /example-zoo/bin/data/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/bin/data/verdana.ttf -------------------------------------------------------------------------------- /example-zoo/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/config.make -------------------------------------------------------------------------------- /example-zoo/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-zoo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/src/main.cpp -------------------------------------------------------------------------------- /example-zoo/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/src/testApp.cpp -------------------------------------------------------------------------------- /example-zoo/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/src/testApp.h -------------------------------------------------------------------------------- /example-zoo/zoo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/zoo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-zoo/zoo.xcodeproj/xcshareddata/xcschemes/zoo Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/zoo.xcodeproj/xcshareddata/xcschemes/zoo Debug.xcscheme -------------------------------------------------------------------------------- /example-zoo/zoo.xcodeproj/xcshareddata/xcschemes/zoo Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/example-zoo/zoo.xcodeproj/xcshareddata/xcschemes/zoo Release.xcscheme -------------------------------------------------------------------------------- /src/ofxSpeech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/src/ofxSpeech.h -------------------------------------------------------------------------------- /src/ofxSpeechRecognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/src/ofxSpeechRecognizer.cpp -------------------------------------------------------------------------------- /src/ofxSpeechRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/src/ofxSpeechRecognizer.h -------------------------------------------------------------------------------- /src/ofxSpeechSynthesizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/src/ofxSpeechSynthesizer.cpp -------------------------------------------------------------------------------- /src/ofxSpeechSynthesizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latrokles/ofxSpeech/HEAD/src/ofxSpeechSynthesizer.h --------------------------------------------------------------------------------