gitextract_mrhtq6xo/ ├── LICENSE ├── Makefile ├── README.md ├── apps/ │ ├── exePhase1_2.cpp │ ├── exePhase3.cpp │ └── exePhase4.cpp ├── dataset-config/ │ ├── test.txt │ ├── train.txt │ ├── trainval.txt │ └── val.txt ├── dataset-config-simple/ │ ├── 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 ├── ibrahim16-cvpr/ │ ├── 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 ├── ibrahim16-cvpr-simple/ │ ├── 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 ├── 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/ │ └── annotations.txt └── 41/ └── annotations.txt