├── .gitignore ├── Crawler ├── README ├── fetch_activitynet_videos.sh └── run_crosscheck.py ├── Evaluation ├── README.md ├── argparse ├── batch_classification.py ├── batch_detection.py ├── data │ ├── actNet200-V1-3.pkl │ ├── activity_net.v1-3.min.json │ ├── sample_classification_prediction.json │ └── sample_detection_prediction.json ├── eval_classification.py ├── eval_detection.py ├── get_classification_performance.py ├── get_detection_performance.py ├── result-C3D.mat ├── result-EXT.mat ├── result-ap-fused-IMS-MBH.mat └── utils.py ├── LICENSE ├── README.md ├── matlab-scripts ├── convertVid2Images.m ├── movefiles.m └── remain.m ├── processing ├── calssification-fusion.py ├── classification-framewise.py ├── classification.py ├── code │ ├── Mytools.py │ ├── TaskIII_SaveClassifcationWindow.py │ ├── TaskII_SaveFVs4Testdata.py │ ├── TaskIV_SaveClassifcationBinary.py │ ├── TaskI_ComputeQuads.py │ └── TaskV_GeneratePredictions.py ├── colScoreSmoothed.mat ├── detection-fusion-working.py ├── detection-old.py ├── detection.py ├── mbhcls.py ├── saveCLFs.py ├── saveCalssification.py ├── test.m └── trainC3dFramewise.py └── python-scripts ├── checkforflow.py ├── convertMP4toJPG.py ├── genMotionlabels.py ├── genlabels.py ├── genlists.py ├── hpcconvertvideos.py ├── mlist.py ├── resaveAnnotations.py └── videolist.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.txt 3 | *~ 4 | *.mat 5 | -------------------------------------------------------------------------------- /Crawler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Crawler/README -------------------------------------------------------------------------------- /Crawler/fetch_activitynet_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Crawler/fetch_activitynet_videos.sh -------------------------------------------------------------------------------- /Crawler/run_crosscheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Crawler/run_crosscheck.py -------------------------------------------------------------------------------- /Evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/README.md -------------------------------------------------------------------------------- /Evaluation/argparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/argparse -------------------------------------------------------------------------------- /Evaluation/batch_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/batch_classification.py -------------------------------------------------------------------------------- /Evaluation/batch_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/batch_detection.py -------------------------------------------------------------------------------- /Evaluation/data/actNet200-V1-3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/data/actNet200-V1-3.pkl -------------------------------------------------------------------------------- /Evaluation/data/activity_net.v1-3.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/data/activity_net.v1-3.min.json -------------------------------------------------------------------------------- /Evaluation/data/sample_classification_prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/data/sample_classification_prediction.json -------------------------------------------------------------------------------- /Evaluation/data/sample_detection_prediction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/data/sample_detection_prediction.json -------------------------------------------------------------------------------- /Evaluation/eval_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/eval_classification.py -------------------------------------------------------------------------------- /Evaluation/eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/eval_detection.py -------------------------------------------------------------------------------- /Evaluation/get_classification_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/get_classification_performance.py -------------------------------------------------------------------------------- /Evaluation/get_detection_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/get_detection_performance.py -------------------------------------------------------------------------------- /Evaluation/result-C3D.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/result-C3D.mat -------------------------------------------------------------------------------- /Evaluation/result-EXT.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/result-EXT.mat -------------------------------------------------------------------------------- /Evaluation/result-ap-fused-IMS-MBH.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/result-ap-fused-IMS-MBH.mat -------------------------------------------------------------------------------- /Evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/Evaluation/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/README.md -------------------------------------------------------------------------------- /matlab-scripts/convertVid2Images.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/matlab-scripts/convertVid2Images.m -------------------------------------------------------------------------------- /matlab-scripts/movefiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/matlab-scripts/movefiles.m -------------------------------------------------------------------------------- /matlab-scripts/remain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/matlab-scripts/remain.m -------------------------------------------------------------------------------- /processing/calssification-fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/calssification-fusion.py -------------------------------------------------------------------------------- /processing/classification-framewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/classification-framewise.py -------------------------------------------------------------------------------- /processing/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/classification.py -------------------------------------------------------------------------------- /processing/code/Mytools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/Mytools.py -------------------------------------------------------------------------------- /processing/code/TaskIII_SaveClassifcationWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/TaskIII_SaveClassifcationWindow.py -------------------------------------------------------------------------------- /processing/code/TaskII_SaveFVs4Testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/TaskII_SaveFVs4Testdata.py -------------------------------------------------------------------------------- /processing/code/TaskIV_SaveClassifcationBinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/TaskIV_SaveClassifcationBinary.py -------------------------------------------------------------------------------- /processing/code/TaskI_ComputeQuads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/TaskI_ComputeQuads.py -------------------------------------------------------------------------------- /processing/code/TaskV_GeneratePredictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/code/TaskV_GeneratePredictions.py -------------------------------------------------------------------------------- /processing/colScoreSmoothed.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/colScoreSmoothed.mat -------------------------------------------------------------------------------- /processing/detection-fusion-working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/detection-fusion-working.py -------------------------------------------------------------------------------- /processing/detection-old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/detection-old.py -------------------------------------------------------------------------------- /processing/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/detection.py -------------------------------------------------------------------------------- /processing/mbhcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/mbhcls.py -------------------------------------------------------------------------------- /processing/saveCLFs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/saveCLFs.py -------------------------------------------------------------------------------- /processing/saveCalssification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/saveCalssification.py -------------------------------------------------------------------------------- /processing/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/test.m -------------------------------------------------------------------------------- /processing/trainC3dFramewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/processing/trainC3dFramewise.py -------------------------------------------------------------------------------- /python-scripts/checkforflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/checkforflow.py -------------------------------------------------------------------------------- /python-scripts/convertMP4toJPG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/convertMP4toJPG.py -------------------------------------------------------------------------------- /python-scripts/genMotionlabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/genMotionlabels.py -------------------------------------------------------------------------------- /python-scripts/genlabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/genlabels.py -------------------------------------------------------------------------------- /python-scripts/genlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/genlists.py -------------------------------------------------------------------------------- /python-scripts/hpcconvertvideos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/hpcconvertvideos.py -------------------------------------------------------------------------------- /python-scripts/mlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/mlist.py -------------------------------------------------------------------------------- /python-scripts/resaveAnnotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/resaveAnnotations.py -------------------------------------------------------------------------------- /python-scripts/videolist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/actNet-inAct/HEAD/python-scripts/videolist.py --------------------------------------------------------------------------------