├── .gitignore ├── DAVIS_demo ├── Annotations │ └── 480p │ │ └── bmx-trees │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ ├── 00011.png │ │ ├── 00012.png │ │ ├── 00013.png │ │ ├── 00014.png │ │ ├── 00015.png │ │ ├── 00016.png │ │ ├── 00017.png │ │ ├── 00018.png │ │ ├── 00019.png │ │ ├── 00020.png │ │ ├── 00021.png │ │ ├── 00022.png │ │ ├── 00023.png │ │ ├── 00024.png │ │ ├── 00025.png │ │ ├── 00026.png │ │ ├── 00027.png │ │ ├── 00028.png │ │ ├── 00029.png │ │ ├── 00030.png │ │ ├── 00031.png │ │ ├── 00032.png │ │ ├── 00033.png │ │ ├── 00034.png │ │ ├── 00035.png │ │ ├── 00036.png │ │ ├── 00037.png │ │ ├── 00038.png │ │ ├── 00039.png │ │ ├── 00040.png │ │ ├── 00041.png │ │ ├── 00042.png │ │ ├── 00043.png │ │ ├── 00044.png │ │ ├── 00045.png │ │ ├── 00046.png │ │ ├── 00047.png │ │ ├── 00048.png │ │ ├── 00049.png │ │ ├── 00050.png │ │ ├── 00051.png │ │ ├── 00052.png │ │ ├── 00053.png │ │ ├── 00054.png │ │ ├── 00055.png │ │ ├── 00056.png │ │ ├── 00057.png │ │ ├── 00058.png │ │ ├── 00059.png │ │ ├── 00060.png │ │ ├── 00061.png │ │ ├── 00062.png │ │ ├── 00063.png │ │ ├── 00064.png │ │ ├── 00065.png │ │ ├── 00066.png │ │ ├── 00067.png │ │ ├── 00068.png │ │ ├── 00069.png │ │ ├── 00070.png │ │ ├── 00071.png │ │ ├── 00072.png │ │ ├── 00073.png │ │ ├── 00074.png │ │ ├── 00075.png │ │ ├── 00076.png │ │ ├── 00077.png │ │ ├── 00078.png │ │ └── 00079.png ├── ImageSets │ └── 2016 │ │ └── demo_davis.txt └── JPEGImages │ └── 480p │ └── bmx-trees │ ├── 00000.jpg │ ├── 00001.jpg │ ├── 00002.jpg │ ├── 00003.jpg │ ├── 00004.jpg │ ├── 00005.jpg │ ├── 00006.jpg │ ├── 00007.jpg │ ├── 00008.jpg │ ├── 00009.jpg │ ├── 00010.jpg │ ├── 00011.jpg │ ├── 00012.jpg │ ├── 00013.jpg │ ├── 00014.jpg │ ├── 00015.jpg │ ├── 00016.jpg │ ├── 00017.jpg │ ├── 00018.jpg │ ├── 00019.jpg │ ├── 00020.jpg │ ├── 00021.jpg │ ├── 00022.jpg │ ├── 00023.jpg │ ├── 00024.jpg │ ├── 00025.jpg │ ├── 00026.jpg │ ├── 00027.jpg │ ├── 00028.jpg │ ├── 00029.jpg │ ├── 00030.jpg │ ├── 00031.jpg │ ├── 00032.jpg │ ├── 00033.jpg │ ├── 00034.jpg │ ├── 00035.jpg │ ├── 00036.jpg │ ├── 00037.jpg │ ├── 00038.jpg │ ├── 00039.jpg │ ├── 00040.jpg │ ├── 00041.jpg │ ├── 00042.jpg │ ├── 00043.jpg │ ├── 00044.jpg │ ├── 00045.jpg │ ├── 00046.jpg │ ├── 00047.jpg │ ├── 00048.jpg │ ├── 00049.jpg │ ├── 00050.jpg │ ├── 00051.jpg │ ├── 00052.jpg │ ├── 00053.jpg │ ├── 00054.jpg │ ├── 00055.jpg │ ├── 00056.jpg │ ├── 00057.jpg │ ├── 00058.jpg │ ├── 00059.jpg │ ├── 00060.jpg │ ├── 00061.jpg │ ├── 00062.jpg │ ├── 00063.jpg │ ├── 00064.jpg │ ├── 00065.jpg │ ├── 00066.jpg │ ├── 00067.jpg │ ├── 00068.jpg │ ├── 00069.jpg │ ├── 00070.jpg │ ├── 00071.jpg │ ├── 00072.jpg │ ├── 00073.jpg │ ├── 00074.jpg │ ├── 00075.jpg │ ├── 00076.jpg │ ├── 00077.jpg │ ├── 00078.jpg │ └── 00079.jpg ├── README.md ├── davis.py ├── demo_retarget.py ├── demo_vi.py ├── image ├── bmx-trees.png ├── roller4.jpg └── swing4.jpg ├── install.sh ├── lib ├── __init__.py └── resample2d_package │ ├── __init__.py │ ├── build │ ├── lib.linux-x86_64-3.7 │ │ └── resample2d_cuda.cpython-37m-x86_64-linux-gnu.so │ └── temp.linux-x86_64-3.7 │ │ ├── resample2d_cuda.o │ │ └── resample2d_kernel.o │ ├── dist │ └── resample2d_cuda-0.0.0-py3.7-linux-x86_64.egg │ ├── resample2d.py │ ├── resample2d_cuda.cc │ ├── resample2d_cuda.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt │ ├── resample2d_kernel.cu │ ├── resample2d_kernel.cuh │ └── setup.py ├── model.py ├── models ├── ConvLSTM.py ├── __init__.py ├── correlation_package │ ├── __init__.py │ ├── build │ │ ├── lib.linux-x86_64-3.7 │ │ │ └── correlation_cuda.cpython-37m-x86_64-linux-gnu.so │ │ └── temp.linux-x86_64-3.7 │ │ │ ├── correlation_cuda.o │ │ │ └── correlation_cuda_kernel.o │ ├── correlation.py │ ├── correlation_cuda.cc │ ├── correlation_cuda.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── correlation_cuda_kernel.cu │ ├── correlation_cuda_kernel.cuh │ ├── dist │ │ └── correlation_cuda-0.0.0-py3.7-linux-x86_64.egg │ └── setup.py ├── flow_modules.py ├── gated_conv.py ├── utils.py └── vinet.py ├── results └── vinet_agg_rec │ └── readme └── train_git.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/.gitignore -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00000.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00001.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00002.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00003.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00004.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00005.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00006.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00007.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00008.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00009.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00010.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00011.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00012.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00013.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00014.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00015.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00016.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00017.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00018.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00019.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00020.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00021.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00022.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00023.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00024.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00025.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00026.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00027.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00028.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00029.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00030.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00031.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00032.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00033.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00034.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00035.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00036.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00037.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00038.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00039.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00040.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00041.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00042.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00043.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00044.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00045.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00046.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00047.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00048.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00049.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00050.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00051.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00052.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00053.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00054.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00055.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00056.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00057.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00058.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00059.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00060.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00061.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00062.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00063.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00064.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00065.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00066.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00067.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00068.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00069.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00070.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00071.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00072.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00073.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00074.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00075.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00076.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00077.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00078.png -------------------------------------------------------------------------------- /DAVIS_demo/Annotations/480p/bmx-trees/00079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/Annotations/480p/bmx-trees/00079.png -------------------------------------------------------------------------------- /DAVIS_demo/ImageSets/2016/demo_davis.txt: -------------------------------------------------------------------------------- 1 | bmx-trees 2 | -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00000.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00001.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00002.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00003.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00004.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00005.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00006.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00007.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00008.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00009.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00010.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00011.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00012.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00013.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00014.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00015.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00016.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00017.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00018.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00019.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00020.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00021.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00022.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00023.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00024.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00025.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00026.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00027.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00028.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00029.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00030.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00031.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00032.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00033.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00034.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00035.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00036.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00037.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00038.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00039.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00040.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00041.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00042.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00043.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00044.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00045.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00046.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00047.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00048.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00049.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00050.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00051.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00052.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00053.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00054.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00055.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00056.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00057.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00058.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00059.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00060.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00061.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00062.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00063.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00064.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00065.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00066.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00067.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00068.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00069.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00070.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00071.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00072.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00073.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00074.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00075.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00076.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00077.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00078.jpg -------------------------------------------------------------------------------- /DAVIS_demo/JPEGImages/480p/bmx-trees/00079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/DAVIS_demo/JPEGImages/480p/bmx-trees/00079.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/README.md -------------------------------------------------------------------------------- /davis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/davis.py -------------------------------------------------------------------------------- /demo_retarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/demo_retarget.py -------------------------------------------------------------------------------- /demo_vi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/demo_vi.py -------------------------------------------------------------------------------- /image/bmx-trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/image/bmx-trees.png -------------------------------------------------------------------------------- /image/roller4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/image/roller4.jpg -------------------------------------------------------------------------------- /image/swing4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/image/swing4.jpg -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/install.sh -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/resample2d_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/resample2d_package/build/lib.linux-x86_64-3.7/resample2d_cuda.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/build/lib.linux-x86_64-3.7/resample2d_cuda.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /lib/resample2d_package/build/temp.linux-x86_64-3.7/resample2d_cuda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/build/temp.linux-x86_64-3.7/resample2d_cuda.o -------------------------------------------------------------------------------- /lib/resample2d_package/build/temp.linux-x86_64-3.7/resample2d_kernel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/build/temp.linux-x86_64-3.7/resample2d_kernel.o -------------------------------------------------------------------------------- /lib/resample2d_package/dist/resample2d_cuda-0.0.0-py3.7-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/dist/resample2d_cuda-0.0.0-py3.7-linux-x86_64.egg -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d.py -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_cuda.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d_cuda.cc -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_cuda.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d_cuda.egg-info/PKG-INFO -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_cuda.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d_cuda.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_cuda.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_cuda.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | resample2d_cuda 2 | -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d_kernel.cu -------------------------------------------------------------------------------- /lib/resample2d_package/resample2d_kernel.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/resample2d_kernel.cuh -------------------------------------------------------------------------------- /lib/resample2d_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/lib/resample2d_package/setup.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/model.py -------------------------------------------------------------------------------- /models/ConvLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/ConvLSTM.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/correlation_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/correlation_package/build/lib.linux-x86_64-3.7/correlation_cuda.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/build/lib.linux-x86_64-3.7/correlation_cuda.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /models/correlation_package/build/temp.linux-x86_64-3.7/correlation_cuda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/build/temp.linux-x86_64-3.7/correlation_cuda.o -------------------------------------------------------------------------------- /models/correlation_package/build/temp.linux-x86_64-3.7/correlation_cuda_kernel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/build/temp.linux-x86_64-3.7/correlation_cuda_kernel.o -------------------------------------------------------------------------------- /models/correlation_package/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation.py -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation_cuda.cc -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation_cuda.egg-info/PKG-INFO -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation_cuda.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | correlation_cuda 2 | -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation_cuda_kernel.cu -------------------------------------------------------------------------------- /models/correlation_package/correlation_cuda_kernel.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/correlation_cuda_kernel.cuh -------------------------------------------------------------------------------- /models/correlation_package/dist/correlation_cuda-0.0.0-py3.7-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/dist/correlation_cuda-0.0.0-py3.7-linux-x86_64.egg -------------------------------------------------------------------------------- /models/correlation_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/correlation_package/setup.py -------------------------------------------------------------------------------- /models/flow_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/flow_modules.py -------------------------------------------------------------------------------- /models/gated_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/gated_conv.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/utils.py -------------------------------------------------------------------------------- /models/vinet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/models/vinet.py -------------------------------------------------------------------------------- /results/vinet_agg_rec/readme: -------------------------------------------------------------------------------- 1 | download save_agg_rec_512.pth and place it here. 2 | -------------------------------------------------------------------------------- /train_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcahny/Deep-Video-Inpainting/HEAD/train_git.py --------------------------------------------------------------------------------