├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENCE ├── README.md ├── data ├── example.mp4 └── examples │ ├── bkg_masked.jpg │ ├── gifs │ └── person_masked.gif │ ├── mask.png │ ├── other_style │ ├── editaonisl_mosaic.jpg │ ├── edtanoisl_starry.jpg │ └── mosaic_starry.jpg │ ├── person_masked.jpg │ ├── stylized.jpg │ └── usage_section │ └── structure.png ├── environment.yml ├── manual_mask_cleaning.py ├── naive_video_pipeline.py └── pipeline_components ├── compositor.py ├── constants.py ├── nst_stylization.py ├── segmentation.py └── video_creation.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: theaiepiphany 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/README.md -------------------------------------------------------------------------------- /data/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/example.mp4 -------------------------------------------------------------------------------- /data/examples/bkg_masked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/bkg_masked.jpg -------------------------------------------------------------------------------- /data/examples/gifs/person_masked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/gifs/person_masked.gif -------------------------------------------------------------------------------- /data/examples/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/mask.png -------------------------------------------------------------------------------- /data/examples/other_style/editaonisl_mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/other_style/editaonisl_mosaic.jpg -------------------------------------------------------------------------------- /data/examples/other_style/edtanoisl_starry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/other_style/edtanoisl_starry.jpg -------------------------------------------------------------------------------- /data/examples/other_style/mosaic_starry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/other_style/mosaic_starry.jpg -------------------------------------------------------------------------------- /data/examples/person_masked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/person_masked.jpg -------------------------------------------------------------------------------- /data/examples/stylized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/stylized.jpg -------------------------------------------------------------------------------- /data/examples/usage_section/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/data/examples/usage_section/structure.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/environment.yml -------------------------------------------------------------------------------- /manual_mask_cleaning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/manual_mask_cleaning.py -------------------------------------------------------------------------------- /naive_video_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/naive_video_pipeline.py -------------------------------------------------------------------------------- /pipeline_components/compositor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/pipeline_components/compositor.py -------------------------------------------------------------------------------- /pipeline_components/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/pipeline_components/constants.py -------------------------------------------------------------------------------- /pipeline_components/nst_stylization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/pipeline_components/nst_stylization.py -------------------------------------------------------------------------------- /pipeline_components/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/pipeline_components/segmentation.py -------------------------------------------------------------------------------- /pipeline_components/video_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gordicaleksa/pytorch-naive-video-neural-style-transfer/HEAD/pipeline_components/video_creation.py --------------------------------------------------------------------------------