├── README.md ├── configuration.py ├── imgs ├── result1.png └── result2.png ├── mergeAnnotations.py ├── requirements.txt ├── sanityCheck.py ├── test.py ├── train.py └── utils ├── __pycache__ ├── convlstm.cpython-36.pyc ├── dataloader5fps.cpython-36.pyc ├── ensemble.cpython-36.pyc └── initializer.cpython-36.pyc ├── convlstm.py ├── dataloader5fps.py ├── ensemble.py └── initializer.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/README.md -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/configuration.py -------------------------------------------------------------------------------- /imgs/result1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/imgs/result1.png -------------------------------------------------------------------------------- /imgs/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/imgs/result2.png -------------------------------------------------------------------------------- /mergeAnnotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/mergeAnnotations.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /sanityCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/sanityCheck.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils/__pycache__/convlstm.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/__pycache__/convlstm.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloader5fps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/__pycache__/dataloader5fps.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/ensemble.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/__pycache__/ensemble.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/initializer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/__pycache__/initializer.cpython-36.pyc -------------------------------------------------------------------------------- /utils/convlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/convlstm.py -------------------------------------------------------------------------------- /utils/dataloader5fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/dataloader5fps.py -------------------------------------------------------------------------------- /utils/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/ensemble.py -------------------------------------------------------------------------------- /utils/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankvkt/video_object_segmentation/HEAD/utils/initializer.py --------------------------------------------------------------------------------