├── LICENSE ├── Makefile ├── README.md ├── apps ├── exePhase1_2.cpp ├── exePhase3.cpp └── exePhase4.cpp ├── dataset-config-simple ├── test.txt ├── train.txt ├── trainval.txt └── val.txt ├── dataset-config ├── test.txt ├── train.txt ├── trainval.txt └── val.txt ├── eclipse-project └── ibrahim16-deep-act-rec-part │ ├── .cproject │ ├── .project │ ├── Debug │ ├── apps │ │ └── subdir.mk │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── src │ │ └── subdir.mk │ ├── Release │ ├── apps │ │ └── subdir.mk │ ├── makefile │ ├── objects.mk │ ├── sources.mk │ └── src │ │ └── subdir.mk │ ├── apps │ ├── exePhase1_2.cpp │ ├── exePhase3.cpp │ └── exePhase4.cpp │ └── src │ ├── custom-abbreviation.h │ ├── custom-images-macros.h │ ├── custom-macros.h │ ├── dlib-tracker-wrapper.cpp │ ├── dlib-tracker-wrapper.h │ ├── images-utilities.cpp │ ├── images-utilities.h │ ├── leveldb-reader.cpp │ ├── leveldb-reader.h │ ├── leveldb-writer.cpp │ ├── leveldb-writer.h │ ├── rect-helper.cpp │ ├── rect-helper.h │ ├── utilities.cpp │ ├── utilities.h │ ├── volleyball-dataset-mgr.cpp │ └── volleyball-dataset-mgr.h ├── extra ├── cvpr16 ppt.pdf ├── poster.jpg └── poster.pdf ├── ibrahim16-cvpr-simple ├── none.jpg ├── p1-network1 │ ├── clip_w5.txt │ ├── trainval-test-create-mean-script.sh │ ├── trainval-test-exe-script-resume.sh │ ├── trainval-test-exe-script.sh │ ├── trainval-test-network.prototxt │ └── trainval-test-solver.prototxt ├── p3-extract-features-networks │ ├── test.prototxt │ └── trainval.prototxt ├── p4-network2 │ ├── clip_w10.txt │ ├── trainval-test-exe-script-resume.sh │ ├── trainval-test-exe-script.sh │ ├── trainval-test-network.prototxt │ ├── trainval-test-solver.prototxt │ ├── trainval-test-window-evaluation-exe-script.sh │ └── trainval-test-window-evaluation-network.prototxt ├── script-clean.sh ├── script-simple-expected-log.txt └── script-simple.sh ├── ibrahim16-cvpr ├── none.jpg ├── p1-network1 │ ├── clip_w5.txt │ ├── trainval-test-create-mean-script.sh │ ├── trainval-test-exe-script-resume.sh │ ├── trainval-test-exe-script.sh │ ├── trainval-test-network.prototxt │ └── trainval-test-solver.prototxt ├── p3-extract-features-networks │ ├── test.prototxt │ └── trainval.prototxt ├── p4-network2 │ ├── clip_w10.txt │ ├── trainval-test-exe-script-resume.sh │ ├── trainval-test-exe-script.sh │ ├── trainval-test-network.prototxt │ ├── trainval-test-solver.prototxt │ ├── trainval-test-window-evaluation-exe-script.sh │ └── trainval-test-window-evaluation-network.prototxt ├── script-clean.sh ├── script-p1-data.sh ├── script-p1-train-p3-p4.sh ├── script-p2-data-fuse.sh └── script.sh ├── img ├── dataset1.jpg ├── dataset2.jpg ├── fig1.png ├── fig2-b.png ├── fig2-cvpr.png ├── fig3.jpg └── table-ac.png ├── src ├── custom-abbreviation.h ├── custom-images-macros.h ├── custom-macros.h ├── dlib-tracker-wrapper.cpp ├── dlib-tracker-wrapper.h ├── images-utilities.cpp ├── images-utilities.h ├── leveldb-reader.cpp ├── leveldb-reader.h ├── leveldb-writer.cpp ├── leveldb-writer.h ├── rect-helper.cpp ├── rect-helper.h ├── utilities.cpp ├── utilities.h ├── volleyball-dataset-mgr.cpp └── volleyball-dataset-mgr.h └── volleyball-simple ├── 39 ├── 29885 │ ├── 29880.jpg │ ├── 29881.jpg │ ├── 29882.jpg │ ├── 29883.jpg │ ├── 29884.jpg │ ├── 29885.jpg │ ├── 29886.jpg │ ├── 29887.jpg │ ├── 29888.jpg │ └── 29889.jpg ├── 29905 │ ├── 29900.jpg │ ├── 29901.jpg │ ├── 29902.jpg │ ├── 29903.jpg │ ├── 29904.jpg │ ├── 29905.jpg │ ├── 29906.jpg │ ├── 29907.jpg │ ├── 29908.jpg │ └── 29909.jpg └── annotations.txt └── 41 ├── 19515 ├── 19510.jpg ├── 19511.jpg ├── 19512.jpg ├── 19513.jpg ├── 19514.jpg ├── 19515.jpg ├── 19516.jpg ├── 19517.jpg ├── 19518.jpg └── 19519.jpg ├── 19560 ├── 19555.jpg ├── 19556.jpg ├── 19557.jpg ├── 19558.jpg ├── 19559.jpg ├── 19560.jpg ├── 19561.jpg ├── 19562.jpg ├── 19563.jpg └── 19564.jpg └── annotations.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/README.md -------------------------------------------------------------------------------- /apps/exePhase1_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/apps/exePhase1_2.cpp -------------------------------------------------------------------------------- /apps/exePhase3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/apps/exePhase3.cpp -------------------------------------------------------------------------------- /apps/exePhase4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/apps/exePhase4.cpp -------------------------------------------------------------------------------- /dataset-config-simple/test.txt: -------------------------------------------------------------------------------- 1 | 41 2 | -------------------------------------------------------------------------------- /dataset-config-simple/train.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset-config-simple/trainval.txt: -------------------------------------------------------------------------------- 1 | 39 2 | -------------------------------------------------------------------------------- /dataset-config-simple/val.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset-config/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/dataset-config/test.txt -------------------------------------------------------------------------------- /dataset-config/train.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset-config/trainval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/dataset-config/trainval.txt -------------------------------------------------------------------------------- /dataset-config/val.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/.cproject -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/.project -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Debug/apps/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Debug/apps/subdir.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Debug/makefile -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Debug/objects.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Debug/sources.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Debug/src/subdir.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Release/apps/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Release/apps/subdir.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Release/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Release/makefile -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Release/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Release/objects.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Release/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Release/sources.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/Release/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/Release/src/subdir.mk -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase1_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase1_2.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase3.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/apps/exePhase4.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/custom-abbreviation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/custom-abbreviation.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/custom-images-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/custom-images-macros.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/custom-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/custom-macros.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/dlib-tracker-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/dlib-tracker-wrapper.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/dlib-tracker-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/dlib-tracker-wrapper.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/images-utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/images-utilities.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/images-utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/images-utilities.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-reader.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-reader.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-writer.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/leveldb-writer.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/rect-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/rect-helper.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/rect-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/rect-helper.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/utilities.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/utilities.h -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/volleyball-dataset-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/volleyball-dataset-mgr.cpp -------------------------------------------------------------------------------- /eclipse-project/ibrahim16-deep-act-rec-part/src/volleyball-dataset-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/eclipse-project/ibrahim16-deep-act-rec-part/src/volleyball-dataset-mgr.h -------------------------------------------------------------------------------- /extra/cvpr16 ppt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/extra/cvpr16 ppt.pdf -------------------------------------------------------------------------------- /extra/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/extra/poster.jpg -------------------------------------------------------------------------------- /extra/poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/extra/poster.pdf -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/none.jpg -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/clip_w5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/clip_w5.txt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/trainval-test-create-mean-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/trainval-test-create-mean-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/trainval-test-exe-script-resume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/trainval-test-exe-script-resume.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/trainval-test-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/trainval-test-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/trainval-test-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/trainval-test-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p1-network1/trainval-test-solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p1-network1/trainval-test-solver.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p3-extract-features-networks/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p3-extract-features-networks/test.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p3-extract-features-networks/trainval.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p3-extract-features-networks/trainval.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/clip_w10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/clip_w10.txt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-exe-script-resume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-exe-script-resume.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-solver.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-window-evaluation-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-window-evaluation-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/p4-network2/trainval-test-window-evaluation-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/p4-network2/trainval-test-window-evaluation-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/script-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/script-clean.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/script-simple-expected-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/script-simple-expected-log.txt -------------------------------------------------------------------------------- /ibrahim16-cvpr-simple/script-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr-simple/script-simple.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/none.jpg -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/clip_w5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/clip_w5.txt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/trainval-test-create-mean-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/trainval-test-create-mean-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/trainval-test-exe-script-resume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/trainval-test-exe-script-resume.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/trainval-test-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/trainval-test-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/trainval-test-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/trainval-test-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p1-network1/trainval-test-solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p1-network1/trainval-test-solver.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p3-extract-features-networks/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p3-extract-features-networks/test.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p3-extract-features-networks/trainval.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p3-extract-features-networks/trainval.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/clip_w10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/clip_w10.txt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-exe-script-resume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-exe-script-resume.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-solver.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-window-evaluation-exe-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-window-evaluation-exe-script.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/p4-network2/trainval-test-window-evaluation-network.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/p4-network2/trainval-test-window-evaluation-network.prototxt -------------------------------------------------------------------------------- /ibrahim16-cvpr/script-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/script-clean.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/script-p1-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/script-p1-data.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/script-p1-train-p3-p4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/script-p1-train-p3-p4.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/script-p2-data-fuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/script-p2-data-fuse.sh -------------------------------------------------------------------------------- /ibrahim16-cvpr/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/ibrahim16-cvpr/script.sh -------------------------------------------------------------------------------- /img/dataset1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/dataset1.jpg -------------------------------------------------------------------------------- /img/dataset2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/dataset2.jpg -------------------------------------------------------------------------------- /img/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/fig1.png -------------------------------------------------------------------------------- /img/fig2-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/fig2-b.png -------------------------------------------------------------------------------- /img/fig2-cvpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/fig2-cvpr.png -------------------------------------------------------------------------------- /img/fig3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/fig3.jpg -------------------------------------------------------------------------------- /img/table-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/img/table-ac.png -------------------------------------------------------------------------------- /src/custom-abbreviation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/custom-abbreviation.h -------------------------------------------------------------------------------- /src/custom-images-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/custom-images-macros.h -------------------------------------------------------------------------------- /src/custom-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/custom-macros.h -------------------------------------------------------------------------------- /src/dlib-tracker-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/dlib-tracker-wrapper.cpp -------------------------------------------------------------------------------- /src/dlib-tracker-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/dlib-tracker-wrapper.h -------------------------------------------------------------------------------- /src/images-utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/images-utilities.cpp -------------------------------------------------------------------------------- /src/images-utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/images-utilities.h -------------------------------------------------------------------------------- /src/leveldb-reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/leveldb-reader.cpp -------------------------------------------------------------------------------- /src/leveldb-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/leveldb-reader.h -------------------------------------------------------------------------------- /src/leveldb-writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/leveldb-writer.cpp -------------------------------------------------------------------------------- /src/leveldb-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/leveldb-writer.h -------------------------------------------------------------------------------- /src/rect-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/rect-helper.cpp -------------------------------------------------------------------------------- /src/rect-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/rect-helper.h -------------------------------------------------------------------------------- /src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/utilities.cpp -------------------------------------------------------------------------------- /src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/utilities.h -------------------------------------------------------------------------------- /src/volleyball-dataset-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/volleyball-dataset-mgr.cpp -------------------------------------------------------------------------------- /src/volleyball-dataset-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/src/volleyball-dataset-mgr.h -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29880.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29880.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29881.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29881.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29882.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29883.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29884.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29885.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29885.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29886.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29886.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29887.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29887.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29888.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29885/29889.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29885/29889.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29900.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29901.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29901.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29902.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29902.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29903.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29903.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29904.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29904.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29905.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29906.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29906.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29907.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29908.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29908.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/29905/29909.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/29905/29909.jpg -------------------------------------------------------------------------------- /volleyball-simple/39/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/39/annotations.txt -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19510.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19511.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19511.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19512.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19513.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19513.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19514.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19515.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19516.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19517.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19517.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19518.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19518.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19515/19519.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19515/19519.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19555.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19555.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19556.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19556.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19557.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19557.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19558.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19558.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19559.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19559.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19560.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19560.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19561.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19562.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19562.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19563.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19563.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/19560/19564.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/19560/19564.jpg -------------------------------------------------------------------------------- /volleyball-simple/41/annotations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mostafa-saad/deep-activity-rec/HEAD/volleyball-simple/41/annotations.txt --------------------------------------------------------------------------------