高级搜索

留言板

尊敬的读者、作者、审稿人, 关于本刊的投稿、审稿、编辑和出版的任何问题, 您可以本页添加留言。我们将尽快给您答复。谢谢您的支持!

姓名
邮箱
手机号码
标题
留言内容
验证码

基于超分辨率重建的强压缩深度伪造视频检测

孙磊 张洪蒙 毛秀青 郭松 胡永进

孙磊, 张洪蒙, 毛秀青, 郭松, 胡永进. 基于超分辨率重建的强压缩深度伪造视频检测[J]. 电子与信息学报, 2021, 43(10): 2967-2975. doi: 10.11999/JEIT200531
引用本文: 孙磊, 张洪蒙, 毛秀青, 郭松, 胡永进. 基于超分辨率重建的强压缩深度伪造视频检测[J]. 电子与信息学报, 2021, 43(10): 2967-2975. doi: 10.11999/JEIT200531
Lei SUN, Hongmeng ZHANG, Xiuqing MAO, Song GUO, Yongjin HU. Super-resolution Reconstruction Detection Method for DeepFake Hard Compressed Videos[J]. Journal of Electronics & Information Technology, 2021, 43(10): 2967-2975. doi: 10.11999/JEIT200531
Citation: Lei SUN, Hongmeng ZHANG, Xiuqing MAO, Song GUO, Yongjin HU. Super-resolution Reconstruction Detection Method for DeepFake Hard Compressed Videos[J]. Journal of Electronics & Information Technology, 2021, 43(10): 2967-2975. doi: 10.11999/JEIT200531

基于超分辨率重建的强压缩深度伪造视频检测

doi: 10.11999/JEIT200531
基金项目: 国家重点研发计划(2017YFB0801900)
详细信息
    作者简介:

    孙磊:男,1973年生,教授,主要研究方向为密码与系统安全、机器学习安全

    张洪蒙:男,1995年生,硕士生,研究方向为计算机视觉

    毛秀青:男,1980年生,副教授,主要研究方向为智能信息系统安全

    郭松:男,1985年生,讲师,主要研究方向为计算机视觉

    胡永进:男,1981年生,讲师,主要研究方向为网络信息防御

    通讯作者:

    张洪蒙 meng19950929@stu.xjtu.edu.cn

  • 中图分类号: TN911.73; TP309.2

Super-resolution Reconstruction Detection Method for DeepFake Hard Compressed Videos

Funds: The National Key R&D Program of China (2017YFB0801900)
  • 摘要: 经典的深度伪造(DeepFake)视频检测方法一般使用卷积神经网络进行检测,但在强压缩深度伪造换脸视频数据集上表现较差,并会对真实数据做出大量误检测。针对这个问题,该文提出一种基于超分辨率重建的强压缩深度伪造视频检测方法。该方法基于深度神经网络检测模型,通过融入超分辨率重建技术,恢复强压缩视频所损失的空间与时间信息,进而提升对强压缩视频的检测准确率。使用FaceForensics++及DFDC数据集进行实验,针对强压缩的深度伪造视频,该方法较ResNet50提高了单帧以及视频的测试准确率,有效缓解强压缩真实视频的误检测问题。
  • 图  1  本文检测模型整体框架

    图  2  视频超分辨率重建网络结构

    图  3  负样本生成及选择RoI区域过程

    图  4  卷积神经网络结构

    图  5  两种方法下的真实视频帧检测准确率对比及差值曲线

    图  6  两种方法下的伪造视频帧检测准确率对比及差值曲线

    图  7  两种方法下的视频检测准确率对比

    图  8  两种方法下的ROC曲线对比

    表  1  负样本生成的伪代码

     输入:图像路径path,图像标签$L$,真实图像${i_r}$
     输出:伪造图像${i_f}$
     参数:随机数${r_1}$, ${r_2}$,转换矩阵${m_t}$,特征点坐标${p_{68}}$。
     (1)  begin
     (2)   for ${i_r}$ in path:
     (3)    ${i_r}$=dlib.align(${i_r}$) //人脸对齐
     (4)     if $L$= 1:
     (5)      if ${r_1}$ < 0.5
     (6)       face = cv2.warpAffine(${i_r}$, ${m_t}$* size, (size,
             size)) //仿射变换
     (7)       face = cv2.GaussianBlur(face, (5, 5)) //高斯
             模糊
     (8)        if ${r_2}$ < 0.5
     (9)         part_mask = dlib.mask(${i_r}$, ${p_{68}}$) //特征
               点标定
     (10)        ${i_f}$ =${i_r}$ * (1 - part_mask) +${i_f}$ *
               part_mask
     (11)         ${i_r}$ = ${i_f}$
     (12)        $L$ = 0
     (13)    else:
     (14)     continue
     (15)   return ${i_r}$
     (16)  end
    下载: 导出CSV

    表  2  改进的ResNet50结构参数

    网络层conv_1conv_2conv_3conv_4conv_5fc
    输出大小112×11256×5628×2814×147×71×1
    改进后的ResNet507×7, 64, stride23×3 maxpool,stride2 $ \left[\begin{array}{c}1\times 1, \\ 3\times 3, \\ 1\times 1, \end{array}\begin{array}{c}64\\ 64\\ 256\end{array}\right]\times 3$$ \left[\begin{array}{c}1\times 1, \\ 3\times 3, \\ 1\times 1, \end{array}\begin{array}{c}256\\ 256\\ 1024\end{array}\right]\times 6$$ \left[\begin{array}{c}1\times 1, \\ 3\times 3, \\ 1\times 1, \end{array}\begin{array}{c}256\\ 256\\ 1024\end{array}\right]\times 6$$ \left[\begin{array}{c}1\times 1, \\ 3\times 3, \\ 1\times 1, \end{array}\begin{array}{c}512\\ 512\\ 2048\end{array}\right]\times 3$average pool, softmax+tanh
    下载: 导出CSV

    表  3  各算法强压缩数据集检测结果对比

    AUCDFF2FFSNTDFDC
    MesoNet[10]81.2762.2066.2756.4763.51
    VSR-MesoNet81.6263.7163.8458.6565.34
    ResNet50[13]63.3657.4860.1251.9658.37
    本文94.8658.3170.6257.2371.88
    下载: 导出CSV
  • [1] 陈宇飞, 沈超, 王骞, 等. 人工智能系统安全与隐私风险[J]. 计算机研究与发展, 2019, 56(10): 2135–2150. doi: 10.7544/issn1000-1239.2019.20190415

    CHEN Yufei, SHEN Chao, WANG Qian, et al. Security and privacy risks in artificial intelligence systems[J]. Journal of Computer Research and Development, 2019, 56(10): 2135–2150. doi: 10.7544/issn1000-1239.2019.20190415
    [2] Faceswap: Deepfakes software for all[EB/OL]. https://github.com/deepfakes/faceswap, 2018.
    [3] KORSHUNOVA I, SHI Wenzhe, DAMBRE J, et al. Fast face-swap using convolutional neural networks[C]. 2017 IEEE International Conference on Computer Vision, Venice, Italy, 2017: 3697–3705. doi: 10.1109/ICCV.2017.397.
    [4] Faceswap-GAN[EB/OL]. https://github.com/shaoanlu/faceswap-GAN, 2019.
    [5] Keras-VGGFace: VGGFace implementation with Keras framework[EB/OL]. https://github.com/rcmalli/keras-vggface, 2019.
    [6] SIMONYAN K and ZISSERMAN A. Very deep convolutional networks for large-scale image recognition[C]. The 3rd International Conference on Learning Representations, San Diego, USA, 2015.
    [7] HE Kaiming, ZHANG Xiangyu, REN Shaoqing, et al. Deep residual learning for image recognition[C]. 2016 IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, USA, 2016: 770–778. doi: 10.1109/CVPR.2016.90.
    [8] ZHOU Peng, HAN Xintong, MORARIU V I, et al. Two-Stream neural networks for tampered face detection[C]. 2017 IEEE Conference on Computer Vision and Pattern Recognition Workshops, Honolulu, USA, 2017: 1831–1839. doi: 10.1109/CVPRW.2017.229.
    [9] AFCHAR D, NOZICK V, YAMAGISHI J, et al. MesoNet: A compact facial video forgery detection network[C]. 2018 IEEE International Workshop on Information Forensics and Security, Hong Kong, China, 2018: 1–7. doi: 10.1109/WIFS.2018.8630761.
    [10] MATERN F, RIESS C, and STAMMINGER M. Exploiting visual artifacts to expose deepfakes and face manipulations[C]. 2019 IEEE Winter Applications of Computer Vision Workshops, Waikoloa Village, USA, 2019: 83–92. doi: 10.1109/WACVW.2019.00020.
    [11] 胡永健, 高逸飞, 刘琲贝, 等. 基于图像分割网络的深度假脸视频篡改检测[J]. 电子与信息学报, 2021, 43(1): 162–170. doi: 10.11999/JEIT200077

    HU Yongjian, GAO Yifei, LIU Beibei, et al. Deepfake videos detection based on image segmentation with deep neural networks[J]. Journal of Electronics &Information Technology, 2021, 43(1): 162–170. doi: 10.11999/JEIT200077
    [12] RÖSSLER A, COZZOLINO D, VERDOLIVA L, et al. Faceforensics++: Learning to detect manipulated facial images[C]. 2019 IEEE/CVF International Conference on Computer Vision, Seoul, Korea (South), 2019: 1–11. doi: 10.1109/iccv.2019.00009.
    [13] LI Yuezun and LYU Siwei. Exposing deepFake videos by detecting face warping artifacts[C]. IEEE/CVF Conference on Computer Vision and Pattern Recognition, Long Beach, USA, 2019: 46–52.
    [14] SCHWARZ H, MARPE D, and WIEGAND T. Overview of the scalable video coding extension of the H. 264/AVC standard[J]. IEEE Transactions on Circuits and Systems for Video Technology, 2007, 17(9): 1103–1120. doi: 10.1109/TCSVT.2007.905532
    [15] PARK S C, PARK M K, and KANG M G. Super-resolution image reconstruction: a technical overview[J]. IEEE Signal Processing Magazine, 2003, 20(3): 21–36. doi: 10.1109/MSP.2003.1203207
    [16] JO Y, Oh S W, KANG J, et al. Deep video super-resolution network using dynamic upsampling filters without explicit motion compensation[C]. 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition, Salt Lake City, USA, 2018: 3224–3232. doi: 10.1109/CVPR.2018.00340.
    [17] NAH S, KIM T H, and LEE K M. Deep multi-scale convolutional neural network for dynamic scene deblurring[C]. 2017 IEEE Conference on Computer Vision and Pattern Recognition, Honolulu, USA, 2017: 257–265. doi: 10.1109/CVPR.2017.35.
    [18] RÖSSLER A, COZZOLINO D, VERDOLIVA L, et al. FaceForensics: A large-scale video dataset for forgery detection in human faces[EB/OL]. https://arxiv.org/abs/1803.09179, 2018.
    [19] NICHOLAS D, ANDREW G, PER K, et al. Deepfakes detection dataset by Google & jigsaw[EB/OL]. 2019. https://ai.googleblog.com/2019/09/contributing-data-to-deepfake-detection.html.
    [20] LIU Ziwei, LUO Ping, WANG Xiaogang, et al. Deep learning face attributes in the wild[C]. 2015 IEEE International Conference on Computer Vision, Santiago, USA, 2015: 3730–3738. doi: 10.1109/ICCV.2015.425.
    [21] SHRIVASTAVA A, GUPTA A, and GIRSHICK R. Training Region-Based object detectors with online hard example mining[C]. 2016 IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, USA, 2016: 761–769. doi: 10.1109/CVPR.2016.89.
  • 加载中
图(8) / 表(3)
计量
  • 文章访问数:  1987
  • HTML全文浏览量:  897
  • PDF下载量:  167
  • 被引次数: 0
出版历程
  • 收稿日期:  2020-06-30
  • 修回日期:  2020-12-31
  • 网络出版日期:  2021-02-02
  • 刊出日期:  2021-10-18

目录

    /

    返回文章
    返回