Facemoji is an OSX app which displays emoji's according to the user face emotion. It is an OSX version of MIT Media Lab Mood Meter.
- You will need to clone the project or download the zip.
$ git clone https://github.com/rahulrrixe/Facemoji.git
- Install CocoaPod if you don't have because the Facemoji app uses AffdexSDK SDK{:target="_blank"} for emotion detection.
$ gem install Cocoapod
Add below lines to your Podfile
, if your creating new one unless you can use the same file which comes with the project.
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'Moodie' do
pod 'AffdexSDK-OSX'
end
Then type this command inside the project root directory where your Podfile is there
$ pod install
Finally open .xcworkspace
file in the Xcode and click the play button
The code is licensed under MIT LICENCE and so you are free to use it for own purpose.