├── README.md ├── __init__.py ├── automated_cgraph.py ├── blending_utils.py ├── cgraph_pipeline.png ├── input └── sample │ └── sample.mp4 ├── main.py ├── requirements.txt ├── results ├── ballet.gif ├── ballet_cgraph.gif ├── ballet_mask.png ├── ferriswheel.gif ├── ferriswheel_cgraph.gif ├── skateboard.gif ├── skateboard_cgraph.gif ├── windchime.gif ├── windchime_cinemagraph.gif ├── wineglass.gif └── wineglass_cgraph.gif ├── test_ocv_video_capture.py └── video_texture.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automated_cgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/automated_cgraph.py -------------------------------------------------------------------------------- /blending_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/blending_utils.py -------------------------------------------------------------------------------- /cgraph_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/cgraph_pipeline.png -------------------------------------------------------------------------------- /input/sample/sample.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/input/sample/sample.mp4 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/ballet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/ballet.gif -------------------------------------------------------------------------------- /results/ballet_cgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/ballet_cgraph.gif -------------------------------------------------------------------------------- /results/ballet_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/ballet_mask.png -------------------------------------------------------------------------------- /results/ferriswheel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/ferriswheel.gif -------------------------------------------------------------------------------- /results/ferriswheel_cgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/ferriswheel_cgraph.gif -------------------------------------------------------------------------------- /results/skateboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/skateboard.gif -------------------------------------------------------------------------------- /results/skateboard_cgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/skateboard_cgraph.gif -------------------------------------------------------------------------------- /results/windchime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/windchime.gif -------------------------------------------------------------------------------- /results/windchime_cinemagraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/windchime_cinemagraph.gif -------------------------------------------------------------------------------- /results/wineglass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/wineglass.gif -------------------------------------------------------------------------------- /results/wineglass_cgraph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/results/wineglass_cgraph.gif -------------------------------------------------------------------------------- /test_ocv_video_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/test_ocv_video_capture.py -------------------------------------------------------------------------------- /video_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yrevar/semi_automated_cinemagraph/HEAD/video_texture.py --------------------------------------------------------------------------------