├── FaceLandmarkDetection ├── Dockerfile ├── LICENSE ├── README.md ├── docs │ └── images │ │ ├── 2dlandmarks.png │ │ └── face-alignment-adrian.gif ├── face_alignment │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── api.cpython-36.pyc │ │ ├── api.cpython-37.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── utils.cpython-36.pyc │ │ └── utils.cpython-37.pyc │ ├── api.py │ ├── detection │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── core.cpython-36.pyc │ │ │ └── core.cpython-37.pyc │ │ ├── core.py │ │ ├── dlib │ │ │ ├── __init__.py │ │ │ └── dlib_detector.py │ │ ├── folder │ │ │ ├── __init__.py │ │ │ └── folder_detector.py │ │ └── sfd │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox.cpython-36.pyc │ │ │ ├── bbox.cpython-37.pyc │ │ │ ├── detect.cpython-36.pyc │ │ │ ├── detect.cpython-37.pyc │ │ │ ├── net_s3fd.cpython-36.pyc │ │ │ ├── net_s3fd.cpython-37.pyc │ │ │ ├── sfd_detector.cpython-36.pyc │ │ │ └── sfd_detector.cpython-37.pyc │ │ │ ├── bbox.py │ │ │ ├── detect.py │ │ │ ├── net_s3fd.py │ │ │ └── sfd_detector.py │ ├── models.py │ └── utils.py ├── get_face_landmark.py ├── setup.cfg ├── setup.py ├── test │ ├── assets │ │ └── aflw-test.jpg │ ├── facealignment_test.py │ ├── smoke_test.py │ └── test_utils.py └── tox.ini ├── Imgs ├── RealLR │ ├── n000056_0060_01.png │ ├── n000067_0228_01.png │ ├── n000184_0094_01.png │ ├── n000241_0132_04.png │ └── n000262_0097_01.png ├── ShowResults │ ├── n000056_0060_01.png │ ├── n000067_0228_01.png │ ├── n000184_0094_01.png │ ├── n000241_0132_04.png │ └── n000262_0097_01.png ├── Whole │ ├── test1_0.jpg │ ├── test1_1.jpg │ ├── test1_2.jpg │ ├── test1_3.jpg │ ├── test2_0.jpg │ ├── test2_1.jpg │ ├── test2_2.jpg │ ├── test2_3.jpg │ ├── test5_0.jpg │ ├── test5_1.jpg │ ├── test5_2.jpg │ └── test5_3.jpg ├── pipeline_a.png └── pipeline_b.png ├── README.md ├── TestData └── TestWhole │ ├── test1.jpg │ ├── test2.jpg │ ├── test3.jpg │ ├── test4.jpg │ ├── test5.jpg │ └── test6.png ├── data ├── MotionBlurKernel │ ├── m_01.mat │ ├── m_02.mat │ ├── m_03.mat │ ├── m_04.mat │ ├── m_05.mat │ ├── m_06.mat │ ├── m_07.mat │ ├── m_08.mat │ ├── m_09.mat │ ├── m_10.mat │ ├── m_11.mat │ ├── m_12.mat │ ├── m_13.mat │ ├── m_14.mat │ ├── m_15.mat │ ├── m_16.mat │ ├── m_17.mat │ ├── m_18.mat │ ├── m_19.mat │ ├── m_20.mat │ ├── m_21.mat │ ├── m_22.mat │ ├── m_23.mat │ ├── m_24.mat │ ├── m_25.mat │ ├── m_26.mat │ ├── m_27.mat │ ├── m_28.mat │ ├── m_29.mat │ ├── m_30.mat │ ├── m_31.mat │ └── m_32.mat ├── __init__.py ├── aligned_dataset.py ├── base_data_loader.py ├── base_dataset.py ├── image_folder.py ├── single_dataset.py └── unaligned_dataset.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── base_model.cpython-38.pyc │ ├── networks.cpython-38.pyc │ └── test_model.cpython-38.pyc ├── base_model.py ├── networks.py └── test_model.py ├── options ├── __pycache__ │ ├── base_options.cpython-38.pyc │ └── test_options.cpython-38.pyc ├── base_options.py └── test_options.py ├── packages ├── FFHQ_template.npy ├── mmod_human_face_detector.dat └── shape_predictor_5_face_landmarks.dat ├── sync_batchnorm ├── __init__.py ├── batchnorm.py ├── batchnorm_reimpl.py ├── comm.py ├── replicate.py └── unittest.py ├── test_FaceDict.py └── util ├── Loss.py ├── ROI_MLS.py ├── get_data.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py /FaceLandmarkDetection/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/Dockerfile -------------------------------------------------------------------------------- /FaceLandmarkDetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/LICENSE -------------------------------------------------------------------------------- /FaceLandmarkDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/README.md -------------------------------------------------------------------------------- /FaceLandmarkDetection/docs/images/2dlandmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/docs/images/2dlandmarks.png -------------------------------------------------------------------------------- /FaceLandmarkDetection/docs/images/face-alignment-adrian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/docs/images/face-alignment-adrian.gif -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__init__.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/api.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/api.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/api.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import FaceDetector -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/__pycache__/core.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/__pycache__/core.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/core.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/dlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/dlib/__init__.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/dlib/dlib_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/dlib/dlib_detector.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/folder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/folder/__init__.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/folder/folder_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/folder/folder_detector.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__init__.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/bbox.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/bbox.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/bbox.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/bbox.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/detect.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/detect.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/detect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/detect.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/net_s3fd.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/net_s3fd.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/net_s3fd.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/net_s3fd.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/sfd_detector.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/sfd_detector.cpython-36.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/sfd_detector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/__pycache__/sfd_detector.cpython-37.pyc -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/bbox.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/detect.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/net_s3fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/net_s3fd.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/detection/sfd/sfd_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/detection/sfd/sfd_detector.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/models.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/face_alignment/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/face_alignment/utils.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/get_face_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/get_face_landmark.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/setup.cfg -------------------------------------------------------------------------------- /FaceLandmarkDetection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/setup.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/test/assets/aflw-test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/test/assets/aflw-test.jpg -------------------------------------------------------------------------------- /FaceLandmarkDetection/test/facealignment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/test/facealignment_test.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/test/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/test/smoke_test.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/test/test_utils.py -------------------------------------------------------------------------------- /FaceLandmarkDetection/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/FaceLandmarkDetection/tox.ini -------------------------------------------------------------------------------- /Imgs/RealLR/n000056_0060_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/RealLR/n000056_0060_01.png -------------------------------------------------------------------------------- /Imgs/RealLR/n000067_0228_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/RealLR/n000067_0228_01.png -------------------------------------------------------------------------------- /Imgs/RealLR/n000184_0094_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/RealLR/n000184_0094_01.png -------------------------------------------------------------------------------- /Imgs/RealLR/n000241_0132_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/RealLR/n000241_0132_04.png -------------------------------------------------------------------------------- /Imgs/RealLR/n000262_0097_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/RealLR/n000262_0097_01.png -------------------------------------------------------------------------------- /Imgs/ShowResults/n000056_0060_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/ShowResults/n000056_0060_01.png -------------------------------------------------------------------------------- /Imgs/ShowResults/n000067_0228_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/ShowResults/n000067_0228_01.png -------------------------------------------------------------------------------- /Imgs/ShowResults/n000184_0094_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/ShowResults/n000184_0094_01.png -------------------------------------------------------------------------------- /Imgs/ShowResults/n000241_0132_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/ShowResults/n000241_0132_04.png -------------------------------------------------------------------------------- /Imgs/ShowResults/n000262_0097_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/ShowResults/n000262_0097_01.png -------------------------------------------------------------------------------- /Imgs/Whole/test1_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test1_0.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test1_1.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test1_2.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test1_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test1_3.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test2_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test2_0.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test2_1.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test2_2.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test2_3.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test5_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test5_0.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test5_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test5_1.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test5_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test5_2.jpg -------------------------------------------------------------------------------- /Imgs/Whole/test5_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/Whole/test5_3.jpg -------------------------------------------------------------------------------- /Imgs/pipeline_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/pipeline_a.png -------------------------------------------------------------------------------- /Imgs/pipeline_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/Imgs/pipeline_b.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/README.md -------------------------------------------------------------------------------- /TestData/TestWhole/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test1.jpg -------------------------------------------------------------------------------- /TestData/TestWhole/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test2.jpg -------------------------------------------------------------------------------- /TestData/TestWhole/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test3.jpg -------------------------------------------------------------------------------- /TestData/TestWhole/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test4.jpg -------------------------------------------------------------------------------- /TestData/TestWhole/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test5.jpg -------------------------------------------------------------------------------- /TestData/TestWhole/test6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/TestData/TestWhole/test6.png -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_01.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_02.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_03.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_03.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_04.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_04.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_05.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_05.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_06.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_06.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_07.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_07.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_08.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_08.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_09.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_09.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_10.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_11.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_11.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_12.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_12.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_13.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_13.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_14.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_14.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_15.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_16.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_16.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_17.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_17.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_18.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_18.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_19.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_19.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_20.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_20.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_21.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_21.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_22.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_22.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_23.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_23.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_24.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_24.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_25.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_25.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_26.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_26.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_27.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_27.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_28.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_28.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_29.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_29.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_30.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_30.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_31.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_31.mat -------------------------------------------------------------------------------- /data/MotionBlurKernel/m_32.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/MotionBlurKernel/m_32.mat -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/single_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/single_dataset.py -------------------------------------------------------------------------------- /data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/data/unaligned_dataset.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/base_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/__pycache__/base_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/__pycache__/networks.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/test_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/__pycache__/test_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/models/test_model.py -------------------------------------------------------------------------------- /options/__pycache__/base_options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/options/__pycache__/base_options.cpython-38.pyc -------------------------------------------------------------------------------- /options/__pycache__/test_options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/options/__pycache__/test_options.cpython-38.pyc -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/options/test_options.py -------------------------------------------------------------------------------- /packages/FFHQ_template.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/packages/FFHQ_template.npy -------------------------------------------------------------------------------- /packages/mmod_human_face_detector.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/packages/mmod_human_face_detector.dat -------------------------------------------------------------------------------- /packages/shape_predictor_5_face_landmarks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/packages/shape_predictor_5_face_landmarks.dat -------------------------------------------------------------------------------- /sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /test_FaceDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/test_FaceDict.py -------------------------------------------------------------------------------- /util/Loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/Loss.py -------------------------------------------------------------------------------- /util/ROI_MLS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/ROI_MLS.py -------------------------------------------------------------------------------- /util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/get_data.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csxmli2016/DFDNet/HEAD/util/visualizer.py --------------------------------------------------------------------------------