public marks

PUBLIC MARKS from decembre with tags face & video

June 2018

VIDEO - LOGICIEL TRUCAGE - Des expressions presque parfaites

Avec leur technologie vidéo, des chercheurs peuvent recréer n'importe quelle expression, à la perfection. (CCM) — En avant-première de la conférence SIGGRAPH (lien en anglais), des chercheurs ont publié un extrait vidéo bluffant. Il montre à quel point les fausses vidéos peuvent être confondues avec les vraies. En transformant les expressions et mouvements du visage d'une personnalité, un deepfake devient indétectable ou presque. En principe, ces fausses vidéos utilisent les expressions d'un acteur anonyme, et les greffent sur le visage d'une personnalité. Autre option : placer un visage modifié sur un autre corps et dans une autre situation qu'à l'origine. Avec leur technologie Deep Video Portraits, les chercheurs ont utilisé un système complexe de superposition des expressions. Ils y ont ajouté un ré-encodage et de l'apprentissage machine. Le résultat est spectaculaire.

November 2017

FACE RECOGNITION - OpenFace project

Overview: The following overview shows the workflow for a single input image of Sylvestor Stallone from the publicly available LFW dataset. Detect faces with a pre-trained models from dlib or OpenCV. Transform the face for the neural network. This repository uses dlib's real-time pose estimation with OpenCV's affine transformation to try to make the eyes and bottom lip appear in the same location on each image. Use a deep neural network to represent (or embed) the face on a 128-dimensional unit hypersphere. The embedding is a generic representation for anybody's face. Unlike other face representations, this embedding has the nice property that a larger distance between two face embeddings means that the faces are likely not of the same person. This property makes clustering, similarity detection, and classification tasks easier than other face recognition techniques where the Euclidean distance between features is not meaningful. Apply your favorite clustering or classification techniques to the features to complete your recognition task. See below for our examples for classification and similarity detection, including an online web demo.