├── .gitignore ├── Images ├── blocked.gif ├── crowded.gif ├── demo1.gif ├── far_distance.gif ├── low_resolution.gif ├── result_1.gif ├── result_2.gif └── transient.gif ├── Models ├── Intro to pre-trained model.md └── keras_model.h5 ├── Networks ├── Flow Gated Network.ipynb ├── OPT Only.ipynb └── RGB Only.ipynb ├── Preprocess └── Video2Numpy.ipynb └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/blocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/blocked.gif -------------------------------------------------------------------------------- /Images/crowded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/crowded.gif -------------------------------------------------------------------------------- /Images/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/demo1.gif -------------------------------------------------------------------------------- /Images/far_distance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/far_distance.gif -------------------------------------------------------------------------------- /Images/low_resolution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/low_resolution.gif -------------------------------------------------------------------------------- /Images/result_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/result_1.gif -------------------------------------------------------------------------------- /Images/result_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/result_2.gif -------------------------------------------------------------------------------- /Images/transient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Images/transient.gif -------------------------------------------------------------------------------- /Models/Intro to pre-trained model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Models/Intro to pre-trained model.md -------------------------------------------------------------------------------- /Models/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Models/keras_model.h5 -------------------------------------------------------------------------------- /Networks/Flow Gated Network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Networks/Flow Gated Network.ipynb -------------------------------------------------------------------------------- /Networks/OPT Only.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Networks/OPT Only.ipynb -------------------------------------------------------------------------------- /Networks/RGB Only.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Networks/RGB Only.ipynb -------------------------------------------------------------------------------- /Preprocess/Video2Numpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/Preprocess/Video2Numpy.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchengny/RWF2000-Video-Database-for-Violence-Detection/HEAD/README.md --------------------------------------------------------------------------------