├── .gitignore ├── LICENSE ├── README.md ├── data ├── __init__.py ├── config.py └── ucf24.py ├── layers ├── __init__.py ├── box_utils.py ├── functions │ ├── __init__.py │ └── prior_box.py └── modules │ ├── __init__.py │ ├── l2norm.py │ └── multibox_loss.py ├── matlab-online-display ├── .gitignore ├── actionpath │ ├── actionPaths.m │ ├── fusedActionPaths.m │ ├── incremental_linking.m │ └── nms.m ├── display01.txt ├── eval │ ├── compute_spatio_temporal_iou.m │ ├── get_PR_curve.m │ └── xVOCap.m ├── frameAp.m ├── gentube │ ├── convert2eval.m │ ├── dpEM_max.m │ ├── mydpEM_max.m │ ├── parActionPathSmoother.m │ └── readALLactionPaths.m ├── myI01onlineTubes.m ├── myI02genFusedTubes.m └── utils │ ├── createdires.m │ ├── initDatasetOpts.m │ └── initDatasetOptsFused.m ├── online-tubes ├── .gitignore ├── I01onlineTubes.m ├── I02genFusedTubes.m ├── actionpath │ ├── actionPaths.m │ ├── fusedActionPaths.m │ ├── incremental_linking.m │ └── nms.m ├── eval │ ├── compute_spatio_temporal_iou.m │ ├── get_PR_curve.m │ └── xVOCap.m ├── frameAp.m ├── gentube │ ├── PARactionPathSmoother.m │ ├── convert2eval.m │ ├── dpEM_max.m │ └── readALLactionPaths.m └── utils │ ├── createdires.m │ ├── initDatasetOpts.m │ └── initDatasetOptsFused.m ├── ssd.py ├── test-ucf24.py ├── train-ucf24.py └── utils ├── __init__.py ├── augmentations.py └── evaluation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/data/config.py -------------------------------------------------------------------------------- /data/ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/data/ucf24.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /matlab-online-display/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/.gitignore -------------------------------------------------------------------------------- /matlab-online-display/actionpath/actionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/actionpath/actionPaths.m -------------------------------------------------------------------------------- /matlab-online-display/actionpath/fusedActionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/actionpath/fusedActionPaths.m -------------------------------------------------------------------------------- /matlab-online-display/actionpath/incremental_linking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/actionpath/incremental_linking.m -------------------------------------------------------------------------------- /matlab-online-display/actionpath/nms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/actionpath/nms.m -------------------------------------------------------------------------------- /matlab-online-display/display01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/display01.txt -------------------------------------------------------------------------------- /matlab-online-display/eval/compute_spatio_temporal_iou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/eval/compute_spatio_temporal_iou.m -------------------------------------------------------------------------------- /matlab-online-display/eval/get_PR_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/eval/get_PR_curve.m -------------------------------------------------------------------------------- /matlab-online-display/eval/xVOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/eval/xVOCap.m -------------------------------------------------------------------------------- /matlab-online-display/frameAp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/frameAp.m -------------------------------------------------------------------------------- /matlab-online-display/gentube/convert2eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/gentube/convert2eval.m -------------------------------------------------------------------------------- /matlab-online-display/gentube/dpEM_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/gentube/dpEM_max.m -------------------------------------------------------------------------------- /matlab-online-display/gentube/mydpEM_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/gentube/mydpEM_max.m -------------------------------------------------------------------------------- /matlab-online-display/gentube/parActionPathSmoother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/gentube/parActionPathSmoother.m -------------------------------------------------------------------------------- /matlab-online-display/gentube/readALLactionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/gentube/readALLactionPaths.m -------------------------------------------------------------------------------- /matlab-online-display/myI01onlineTubes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/myI01onlineTubes.m -------------------------------------------------------------------------------- /matlab-online-display/myI02genFusedTubes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/myI02genFusedTubes.m -------------------------------------------------------------------------------- /matlab-online-display/utils/createdires.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/utils/createdires.m -------------------------------------------------------------------------------- /matlab-online-display/utils/initDatasetOpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/utils/initDatasetOpts.m -------------------------------------------------------------------------------- /matlab-online-display/utils/initDatasetOptsFused.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/matlab-online-display/utils/initDatasetOptsFused.m -------------------------------------------------------------------------------- /online-tubes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/.gitignore -------------------------------------------------------------------------------- /online-tubes/I01onlineTubes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/I01onlineTubes.m -------------------------------------------------------------------------------- /online-tubes/I02genFusedTubes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/I02genFusedTubes.m -------------------------------------------------------------------------------- /online-tubes/actionpath/actionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/actionpath/actionPaths.m -------------------------------------------------------------------------------- /online-tubes/actionpath/fusedActionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/actionpath/fusedActionPaths.m -------------------------------------------------------------------------------- /online-tubes/actionpath/incremental_linking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/actionpath/incremental_linking.m -------------------------------------------------------------------------------- /online-tubes/actionpath/nms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/actionpath/nms.m -------------------------------------------------------------------------------- /online-tubes/eval/compute_spatio_temporal_iou.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/eval/compute_spatio_temporal_iou.m -------------------------------------------------------------------------------- /online-tubes/eval/get_PR_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/eval/get_PR_curve.m -------------------------------------------------------------------------------- /online-tubes/eval/xVOCap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/eval/xVOCap.m -------------------------------------------------------------------------------- /online-tubes/frameAp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/frameAp.m -------------------------------------------------------------------------------- /online-tubes/gentube/PARactionPathSmoother.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/gentube/PARactionPathSmoother.m -------------------------------------------------------------------------------- /online-tubes/gentube/convert2eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/gentube/convert2eval.m -------------------------------------------------------------------------------- /online-tubes/gentube/dpEM_max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/gentube/dpEM_max.m -------------------------------------------------------------------------------- /online-tubes/gentube/readALLactionPaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/gentube/readALLactionPaths.m -------------------------------------------------------------------------------- /online-tubes/utils/createdires.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/utils/createdires.m -------------------------------------------------------------------------------- /online-tubes/utils/initDatasetOpts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/utils/initDatasetOpts.m -------------------------------------------------------------------------------- /online-tubes/utils/initDatasetOptsFused.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/online-tubes/utils/initDatasetOptsFused.m -------------------------------------------------------------------------------- /ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/ssd.py -------------------------------------------------------------------------------- /test-ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/test-ucf24.py -------------------------------------------------------------------------------- /train-ucf24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/train-ucf24.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurkirt/realtime-action-detection/HEAD/utils/evaluation.py --------------------------------------------------------------------------------