Home

Awesome

Where Deepfakes Gaze at? Spatial-Temporal Gaze Inconsistency Analysis for Video Face Forgery Detection


Abstract

With the continuous development of Generative models on face generation, how to distinguish the real and fake face has become an important problem for security. Because of the continuous improvement on the detection accuracy by facial physiological signals, video face forgery detection based on facial physiological signal analysis has received more and more attention, which has become an important research branch in the field of face forgery detection. Currently, most of the research on forgery detection based on physiological signal analysis use biometric features such as blinking patterns, head swings, heart rate signals, and lip movements. However, there hasn't been much exploration on the usage of gaze features in face forgery detection. Through the analysis of gaze directions in face videos, we have observed differences in the distribution of gaze direction pattern between the real and forged videos. Specifically, real videos tend to have more concentrated gaze distribution within a short period of time, while forged videos have more dispersed gaze distributions. In this paper, we present a novel Deepfake gaze analysis method named DFGaze, to explore spatial-temporal gaze inconsistency for video face forgery detection. Our method uses the gaze analysis model (GAM) to analyze the gaze features of face video frames, and then applies a spatial-temporal feature aggregator to realize authenticity classification based on gaze features. In order to better mine the authenticity clues in the videos, we further use the texture analysis model (TAM) and attribute analysis model (AAM) to improve the representation ability of spatial-temporal feature differences between real and forged faces. Extensive experiments show that our method can achieve state-of-the-art performance with the help of gaze analysis. The source code is available at https://github.com/ziminMIAO/DFGaze.

The framework of our proposed method

image

Install & Requirements

The code has been tested on pytorch=1.8.0 and python 3.7, please refer to requirements.txt for more details.

To install the python packages

python -m pip install -r requirements.txt

Dataset

1.In our experiment we use FaceForensics++, WildDeepfake, CelebDF and DFDCP datasets for evaluation.

2.Please divide the video into groups of 32 frames each and put them in the correct path as following.

FaceForensics++
├── test
│   ├── fakeff
│   │   ├── Deepfakes
│   │   │   └── 000_003_0
│   │   │       ├── 0.jpg
│   │   │       ├── 1.jpg
│   │   │       ├── ....
│   │   │       └── 32.jpg
│   │   ├── Face2Face
│   │   │   └── 000_003_0
│   │   │       ├── 0.jpg
│   │   │       ├── 1.jpg
│   │   │       ├── ....
│   │   │       └── 32.jpg
│   │   ├── FaceSwap
│   │   │   └── 000_003_0
│   │   │       ├── 0.jpg
│   │   │       ├── 1.jpg
│   │   │       ├── ....
│   │   │       └── 32.jpg
│   │   └── NeuralTextures
│   │   │   └── 000_003_0
│   │   │       ├── 0.jpg
│   │   │       ├── 1.jpg
│   │   │       ├── ....
│   │   │       └── 32.jpg
│   └── realff
│       └── REALFF
│   │   │   └── 000_0
│   │   │       ├── 0.jpg
│   │   │       ├── 1.jpg
│   │   │       ├── ....
│   │   │       └── 32.jpg
└── train
    ├── fakeff
    │   ├── Deepfakes
    │   ├── Face2Face
    │   ├── FaceSwap
    │   └── NeuralTextures
    └── realff
        └── REALFF

Pretrained Model

we provide the pretrained model (verification code:lasz) based on FaceForensics++. And we also provide a Google Drive link.

Usage

To test a model

python test.py --gpu_id 0 --outf '../your model path' --id 40

To train a model

First, you should download the model of gaze, attribute, and texture, and you can download the "pretrained_cnn_models" from Google Drive link. and update the corresponding model file paths.

python train.py --resume 0 --gpu_id 1 --lr 1e-5 --outf '../your model path' --niter 100

Acknowledgement

Reference

1.L2CS-Net : Fine-Grained Gaze Estimation in Unconstrained Environments [ code ]

2.FairFace: Face Attribute Dataset for Balanced Race, Gender, and Age for Bias Measurement and Mitigation [ code ]

3.Res2net: A new multi-scale backbone architecture [ code ]

4.Pyramid Spatial-Temporal Aggregation for Video-based Person Re-Identification [ code ]

About

If our project is helpful to you, we hope you can star and fork it. If there are any questions and suggestions, please feel free to contact us.

Thanks for your support.