├── README.md ├── __pycache__ ├── defakeHop.cpython-38.pyc ├── face_aligner.cpython-38.pyc ├── multi_cwSaab.cpython-38.pyc ├── saab.cpython-38.pyc └── utils.cpython-38.pyc ├── data.py ├── data ├── left_eye.test.npz ├── left_eye.train.npz ├── right_eye.test.npz └── right_eye.train.npz ├── defakeHop.py ├── face_aligner.py ├── img └── framework.png ├── landmark_extractor.py ├── model.py ├── multi_cwSaab.py ├── patch_extractor.py ├── saab.py ├── test ├── fake │ ├── 0039_fake.mp4 │ └── 0040_fake.mp4 └── real │ ├── 0039.mp4 │ └── 0040.mp4 ├── train ├── fake │ ├── 0000_fake.mp4 │ └── 0001_fake.mp4 └── real │ ├── 0000.mp4 │ └── 0001.mp4 └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/defakeHop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/__pycache__/defakeHop.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/face_aligner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/__pycache__/face_aligner.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/multi_cwSaab.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/__pycache__/multi_cwSaab.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/saab.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/__pycache__/saab.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/data.py -------------------------------------------------------------------------------- /data/left_eye.test.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/data/left_eye.test.npz -------------------------------------------------------------------------------- /data/left_eye.train.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/data/left_eye.train.npz -------------------------------------------------------------------------------- /data/right_eye.test.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/data/right_eye.test.npz -------------------------------------------------------------------------------- /data/right_eye.train.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/data/right_eye.train.npz -------------------------------------------------------------------------------- /defakeHop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/defakeHop.py -------------------------------------------------------------------------------- /face_aligner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/face_aligner.py -------------------------------------------------------------------------------- /img/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/img/framework.png -------------------------------------------------------------------------------- /landmark_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/landmark_extractor.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/model.py -------------------------------------------------------------------------------- /multi_cwSaab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/multi_cwSaab.py -------------------------------------------------------------------------------- /patch_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/patch_extractor.py -------------------------------------------------------------------------------- /saab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/saab.py -------------------------------------------------------------------------------- /test/fake/0039_fake.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/test/fake/0039_fake.mp4 -------------------------------------------------------------------------------- /test/fake/0040_fake.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/test/fake/0040_fake.mp4 -------------------------------------------------------------------------------- /test/real/0039.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/test/real/0039.mp4 -------------------------------------------------------------------------------- /test/real/0040.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/test/real/0040.mp4 -------------------------------------------------------------------------------- /train/fake/0000_fake.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/train/fake/0000_fake.mp4 -------------------------------------------------------------------------------- /train/fake/0001_fake.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/train/fake/0001_fake.mp4 -------------------------------------------------------------------------------- /train/real/0000.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/train/real/0000.mp4 -------------------------------------------------------------------------------- /train/real/0001.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/train/real/0001.mp4 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongshuochen/DefakeHop/HEAD/utils.py --------------------------------------------------------------------------------