├── Figs └── teaser.png ├── README.md ├── example └── note ├── landmark_detection ├── __init__.py ├── mobilenet_v1.py ├── phase1_wpdc_vdc.pth.tar ├── setup_3ddfa.py ├── train.configs │ ├── Model_PAF.pkl │ ├── keypoints_sim.npy │ ├── param_whitening.pkl │ ├── pncc_code.npy │ ├── u_exp.npy │ ├── u_shp.npy │ ├── w_exp_sim.npy │ └── w_shp_sim.npy └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── cv_plot.cpython-37.pyc │ ├── ddfa.cpython-37.pyc │ ├── inference.cpython-37.pyc │ ├── io.cpython-37.pyc │ ├── paf.cpython-37.pyc │ ├── params.cpython-37.pyc │ └── render.cpython-37.pyc │ ├── cv_plot.py │ ├── cython │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── build │ │ └── temp.linux-x86_64-3.7 │ │ │ ├── mesh_core.o │ │ │ └── mesh_core_cython.o │ ├── mesh_core.cpp │ ├── mesh_core.h │ ├── mesh_core_cython.cpp │ ├── mesh_core_cython.cpython-37m-x86_64-linux-gnu.so │ ├── mesh_core_cython.pyx │ ├── readme.md │ └── setup.py │ ├── ddfa.py │ ├── estimate_pose.py │ ├── inference.py │ ├── io.py │ ├── lighting.py │ ├── paf.py │ ├── params.py │ └── render.py ├── main.py ├── result └── note ├── stabnet18.py └── utils.py /Figs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/Figs/teaser.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/README.md -------------------------------------------------------------------------------- /example/note: -------------------------------------------------------------------------------- 1 | Please put unstable videos in this folder 2 | -------------------------------------------------------------------------------- /landmark_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landmark_detection/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/mobilenet_v1.py -------------------------------------------------------------------------------- /landmark_detection/phase1_wpdc_vdc.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/phase1_wpdc_vdc.pth.tar -------------------------------------------------------------------------------- /landmark_detection/setup_3ddfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/setup_3ddfa.py -------------------------------------------------------------------------------- /landmark_detection/train.configs/Model_PAF.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/Model_PAF.pkl -------------------------------------------------------------------------------- /landmark_detection/train.configs/keypoints_sim.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/keypoints_sim.npy -------------------------------------------------------------------------------- /landmark_detection/train.configs/param_whitening.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/param_whitening.pkl -------------------------------------------------------------------------------- /landmark_detection/train.configs/pncc_code.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/pncc_code.npy -------------------------------------------------------------------------------- /landmark_detection/train.configs/u_exp.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/u_exp.npy -------------------------------------------------------------------------------- /landmark_detection/train.configs/u_shp.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/u_shp.npy -------------------------------------------------------------------------------- /landmark_detection/train.configs/w_exp_sim.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/w_exp_sim.npy -------------------------------------------------------------------------------- /landmark_detection/train.configs/w_shp_sim.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/train.configs/w_shp_sim.npy -------------------------------------------------------------------------------- /landmark_detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/cv_plot.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/cv_plot.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/ddfa.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/ddfa.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/inference.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/inference.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/io.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/io.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/paf.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/paf.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/params.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/params.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/__pycache__/render.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/__pycache__/render.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/cv_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cv_plot.py -------------------------------------------------------------------------------- /landmark_detection/utils/cython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /landmark_detection/utils/cython/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /landmark_detection/utils/cython/build/temp.linux-x86_64-3.7/mesh_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/build/temp.linux-x86_64-3.7/mesh_core.o -------------------------------------------------------------------------------- /landmark_detection/utils/cython/build/temp.linux-x86_64-3.7/mesh_core_cython.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/build/temp.linux-x86_64-3.7/mesh_core_cython.o -------------------------------------------------------------------------------- /landmark_detection/utils/cython/mesh_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/mesh_core.cpp -------------------------------------------------------------------------------- /landmark_detection/utils/cython/mesh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/mesh_core.h -------------------------------------------------------------------------------- /landmark_detection/utils/cython/mesh_core_cython.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/mesh_core_cython.cpp -------------------------------------------------------------------------------- /landmark_detection/utils/cython/mesh_core_cython.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/mesh_core_cython.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /landmark_detection/utils/cython/mesh_core_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/mesh_core_cython.pyx -------------------------------------------------------------------------------- /landmark_detection/utils/cython/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/readme.md -------------------------------------------------------------------------------- /landmark_detection/utils/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/cython/setup.py -------------------------------------------------------------------------------- /landmark_detection/utils/ddfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/ddfa.py -------------------------------------------------------------------------------- /landmark_detection/utils/estimate_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/estimate_pose.py -------------------------------------------------------------------------------- /landmark_detection/utils/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/inference.py -------------------------------------------------------------------------------- /landmark_detection/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/io.py -------------------------------------------------------------------------------- /landmark_detection/utils/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/lighting.py -------------------------------------------------------------------------------- /landmark_detection/utils/paf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/paf.py -------------------------------------------------------------------------------- /landmark_detection/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/params.py -------------------------------------------------------------------------------- /landmark_detection/utils/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/landmark_detection/utils/render.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/main.py -------------------------------------------------------------------------------- /result/note: -------------------------------------------------------------------------------- 1 | You will find output stable videos in this folder :) 2 | -------------------------------------------------------------------------------- /stabnet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/stabnet18.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiy173/selfievideostabilization/HEAD/utils.py --------------------------------------------------------------------------------