A server-side face morphing engine implementation by Delaunay Triangulation based in C++ with OpenFace, OpenCV, and BOOST.
Any clients which can send a http-request (with two images basically) could receive the morphed face as a result.
This project first started as a forked project from HERE, then manipulated to the server-based application (via TCP/IP socket communication) powered by Face Detection library included in OpenFace and image processing & computer vision libraries in OpenCV.
This has been adopted & being used to a face-morphing baed commercial quiz service, with reasonably fast speed and quality.
$ ./face-morph-server 9876 .
A FLDM (Face Landmark Detection & Morphing) client script, which queries TCP-request to the FLDM server which performs the "face morphing" task to the given images (source and destination) in the command-line shell using PHP script.
$ /usr/bin/php fldm-client.php ../../sample/1.jpg ../../sample/2.jpg composable 5
The sample images below has been derived from the forked project done by DevendraPratapYadav.