├── .gitignore ├── LICENSE ├── README.md ├── detect.py └── images ├── cycling.jpg ├── deepstack-log.png ├── deepstack-log2.png ├── image.png ├── test.jpg ├── test2.jpg ├── test2_detected.jpg ├── test3.jpg ├── test3_detected.jpg ├── test4.jpg ├── test4_detected.jpg ├── test5.jpg ├── test5_detected.jpg └── test_detected.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/README.md -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/detect.py -------------------------------------------------------------------------------- /images/cycling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/cycling.jpg -------------------------------------------------------------------------------- /images/deepstack-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/deepstack-log.png -------------------------------------------------------------------------------- /images/deepstack-log2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/deepstack-log2.png -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/image.png -------------------------------------------------------------------------------- /images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test.jpg -------------------------------------------------------------------------------- /images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test2.jpg -------------------------------------------------------------------------------- /images/test2_detected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test2_detected.jpg -------------------------------------------------------------------------------- /images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test3.jpg -------------------------------------------------------------------------------- /images/test3_detected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test3_detected.jpg -------------------------------------------------------------------------------- /images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test4.jpg -------------------------------------------------------------------------------- /images/test4_detected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test4_detected.jpg -------------------------------------------------------------------------------- /images/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test5.jpg -------------------------------------------------------------------------------- /images/test5_detected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test5_detected.jpg -------------------------------------------------------------------------------- /images/test_detected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlafenwaMoses/DeepStack_ActionNET/HEAD/images/test_detected.jpg --------------------------------------------------------------------------------