NOTICE: Apple©'s lawyers threatened us to file a complain on the 21th of August 2019 for infringing their intellectual property. So we have replaced the 3D animated fox by a raccoon.
Indeed, Apple© owns the intellectual property of 3D animated foxes (but not on raccoons yet). Thank you for your understanding.
You can build your own animated emoticon embedded in your web application thanks to this library. The video is processed exclusively on the client-side.
The computing power of your GPU is important. If your GPU is powerful, many detections per second will be processed and the result will be smooth and accurate.
The face detection should work even if the lighting is not great. However, the better is the input image, the better is the face expressions detection. Here are some tips to get a good experience:
- The face should be well enlighted: the nose, the eyes should be distinguishable,
- Avoid backlighting: The background should be a wall, not a window,
- The face should not be too far, neither too close to the camera: the face should ideally cover 1/3 of the camera height. It should be fully visible,
- The camera should be placed in front of the user. A side view is not recommended,
- Beards and mustaches can make mouth movement detection harder, and glasses can disturb eyes detection.
- Features
- Architecture
- Demonstrations
- Integration
- Hosting
- About the tech
- Documentation
- License
- References
- face detection and tracking,
- detects 11 facial expressions,
- face rotation around the 3 axis,
- robust to lighting conditions,
- mobile friendly,
- examples provided using SVG and THREE.js.
/assets/
: assets, both for 3D and 2D demonstrations (3D meshes, images),/demos/
: the most interesting: the demos!,/dist/
: heart of the library:jeelizFaceExpressions.js
: main minified script. It gets the camera video feed, exploit the neural network to detect the face and the expressions and stabilize the result,jeelizFaceExpressionsNNC.json
: neural network model loaded by the main script,
/doc/
: some additionnal documentation,/helpers/
: The outputs of the main script are very raw. It is convenient to use these helpers to animate a 3D model with the THREE.js helper or a SVG file with the SVG helper. All demos use these helpers,/libs/
: some javascript libs,/meshConverter/
: only for the THREE.js use. Tool to build the 3D model file including morphs from separate .OBJ files.
All the following demos are included in this repository, in the /demos
path. You can try them:
-
THREE.JS based demos:
- Cute raccoon: source code, live demo
- Cute raccoon from a MP4 video: source code, live demo
- Ready Player Me! source code, live demo
-
SVG based demos:
- Cool Cartman: source code, live demo
-
Native demos:
- Cute raccoon: source code and instruction to build and run it This demo works as a native application using Apache Cordova. It has been tested successfully on iOS. The base code is the same than the THREE.js raccoon demo.
-
In /demos/mediaStream, you can run a demo built in a modern JavaScript environment (React, Webpack, NPM) where multiple animated 3D raccoons can communicate together.
-
Third party demos:
-
Piano Genie: play the piano with your face expressions! This is pretty addictive ;). live demo - ace-piano-genie.glitch.me, code and further details
-
Browse Hands Free, by Oz Ramos: The demo improves web accessibility for disabled people. You can control the mouse cursor with your head (turn your head to move the cursor, smile to click). live demo - browsehandsfree.com - click on the camera icon to start, further details. The code is available on github here: handsfreejs/handsfree.
-
Vauta, by Nono: You can anime a .VRM 3D character avatar in the browser. This web application is only in Japanese. live demo - vauta.netlify.com, tweet and video
-
Laer, by Yakumo. A manga style character reproduces your face expressions. Drawings are really good! This webapp is only in Japanese but the interface is very intuitive (Choose the avatar, click on the big red button and accept the camera access request). Github repository Live demo Twitter post
-
Drowsiness detection, by Abhilash26 aka Dinodroid: Be sure to don't fall asleep when driving thanks to this webapp! You can try it here: dont-drive-drowsy.glitch.me, view the source code or a demo video
-
Expressions reader, by Abhilash26 aka Dinodroid: detects 5 high level expressions (happiness, fear, anger, surprise, sadness) from the morph coefficients given by this lib, and display them as smileys. You can try it here: emotion-reader.glitch.me or browse the source code
-
If you have made an application or a fun demonstration using this library, we would love to check it out and add a link here! Just contact us on Twitter @Jeeliz_AR or LinkedIn.
You just have to serve the content of this directory using a HTTPS server. Camera access can be not authorized depending on the web browser the application is hosted by an unsecured HTTP server. You can use Docker for example to run a HTTPS server:
- Run docker-compose
docker-compose up
- Open a browser and go to
localhost:8888
If you have not bought a camera yet, a screenshot video of the Cartman Demo is available here:
/dist/jeelizFaceExpressions.module.js
is exactly the same as /dist/jeelizFaceExpressions.js
except that it works as JavaScript module, so you can import it directly using:
import 'dist/jeelizFaceExpressions.module.js'
or using require
:
const faceExpressions = require('./lib/jeelizFaceExpressions.module.js')
//...
There is no demo using the module version yet.
If you use this library with a bundler (typically Webpack or Parcel), first you should use the module version.
Then, with the standard library, we load the neural network model (specified by NNCPath
provided as initialization parameter) using AJAX for the following reasons:
- If the user does not accept to share its camera, or if WebGL is not enabled, we don't have to load the neural network model,
- We suppose that the library is deployed using a static HTTPS server.
With a bundler, it is a bit more complicated. It is easier to load the neural network model using a classical import
or require
call and to provide it using the NNC
init parameter:
const faceExpressions = require('./lib/jeelizFaceExpressions.module.js')
const neuralNetworkModel = require('./dist/jeelizFaceExpressionsNNC.json')
faceExpressions.init({
NNC: neuralNetworkModel, //instead of NNCPath
//... other init parameters
});
We don't cover here the integration with mainstream JavaScript frontend frameworks (React, Vue, Angular). If you submit Pull Request adding the boilerplate or a demo integrated with specific frameworks, you are welcome and they will be accepted of course. We can provide this kind of integration as a specific development service ( please contact us here ). But it is not so hard to do it by yourself. Here is a bunch of submitted issues dealing with React integration. Most of them are for Jeeliz FaceFilter, but the problem is similar:
- Angular integration: Jeff Winder has integrated this library with Angular / Electron. His amazing work is published on Github here: JeffWinder/jeelizWeboji-angular-electron-example,
- React integration: #74 and #122
- is it possible to use this library in react native project
- Having difficulty using JeelizThreeHelper in ReactApp
You can also take a look at these Github code repositories:
- ikebastuz/jeelizTest: React demo of a CSS3D FaceFilter. It is based on Create React App
- CloffWrangler/facevoice: Another demo based on [Create React App]
- nickydev100/FFMpeg-Angular-Face-Filter: Angular boilerplate
It is possible to execute a JavaScript application using this library into a Webview for a native app integration.
But with IOS < 14.3 the camera access is disabled inside webviews. If you want to make your application run on devices with IOS versions older than 14.3, you have to implement a hack to stream the camera video into the WKWebview
using websockets.
His hack has been implemented into this repository:
- Apache Cordova IOS demo (it should also work on Android)
- Youtube video of the demo
- Github submitted issue
- Linkedin post detailing pros and cons
But it is still a dirty hack introducing a bottleneck. It still run pretty well on a high end device (tested on Iphone XR), but it is better to stick on a full web environment.
This library requires the user's camera feed through MediaStream API
. Your application should then be hosted with a HTTPS server (the certificate can be self-signed). It won't work at all with unsecure HTTP, even locally with some web browsers.
Be careful to enable gzip HTTP/HTTPS compression for JSON and JS files. Indeed, the neuron network JSON in, /dist/
is quite heavy, but very well compressed with GZIP. You can check the gzip compression of your server here.
The neuron network JSON file is loaded using an ajax XMLHttpRequest
after the user has accepted to share its camera. We proceed this way to avoid to load this quite heavy file if the user refuses to share its camera or if there is no camera available. The loading will be faster if you systematically preload the JSON file using a service worker or a simple raw XMLHttpRequest
just after the loading of the HTML page. Then the file will be in the browser cache and will be fast to request.
The heart of the lib is JEELIZFACEEXPRESSIONS
. It is implemented by /dist/jeelizFaceExpressions.js
script. It relies on Jeeliz WebGL Deep Learning technology to detect and track the user's face using a deep learning network, and to simultaneously evaluate the expression factors. The accuracy is adaptative: the best is the hardware, the more detections are processed per second. All is done client-side.
The documentation of JEELIZFACEEXPRESSIONS
is included in this repository as a PDF file, /doc/jeelizFaceExpressions.pdf. In the main scripts of the demonstration, we never call these methods directly, but always through the helpers. Here is the indices of the morphs returned by this library:
- 0: smileRight → closed mouth smile right
- 1: smileLeft → closed mouth smile left
- 2: eyeBrowLeftDown → left eyebrow frowned
- 3: eyeBrowRightDown → right eyebrow frowned
- 4: eyeBrowLeftUp → raise left eyebrow (surprise)
- 5: eyeBrowRightUp → raise right eyebrow (surprise)
- 6: mouthOpen → open mouth
- 7: mouthRound → o shaped mouth
- 8: eyeRightClose → close right eye
- 9: eyeLeftClose → close left eye
- 10: mouthNasty → nasty mouth (show teeth)
- If
WebGL2
is available, it usesWebGL2
and no specific extension is required, - If
WebGL2
is not available butWebGL1
, we require eitherOES_TEXTURE_FLOAT
extension orOES_TEXTURE_HALF_FLOAT
extension, - If
WebGL2
is not available, and ifWebGL1
is not available or neitherOES_TEXTURE_FLOAT
orOES_HALF_TEXTURE_FLOAT
are implemented, the user is not compatible.
In all cases, you need to have WebRTC implemented in the web browser, otherwise this library will not be able to get the camera video feed. The compatibility tables are on, caniuse.com: WebGL1, WebGL2, WebRTC.
If a compatibility error is triggered, please post an issue on this repository. If this is a camera access error, please first retry after closing all applications which could use your device (Skype, Messenger, other browser tabs and windows, ...). Please include:
- a screenshot of webglreport.com - WebGL1 (about your
WebGL1
implementation), - a screenshot of webglreport.com - WebGL2 (about your
WebGL2
implementation), - the log from the web console,
- the steps to reproduce the bug, and screenshots.
This library works quite everywhere, and it works very well with a high end device like an Iphone X. But if your device is too cheap or too old, it will perform too few evaluations per second and the application will be slow.
JEELIZFACEEXPRESSIONS
: All the helpers rely on this library to get the facial morph coefficients. With this documentation you can interface this library with your own 3D or 2D engine. Click here to read the PDF of the specs,- README.md about using the meshConverter: Used in the THREE.JS Raccoon demo
Apache 2.0. This application is free for both commercial and non-commercial use.