├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── data ├── activity_net.v1-2.min.json ├── activity_net.v1-3.min.json ├── anet_v1.3_clip_list.txt ├── img_1.jpg ├── img_2.jpg └── plastering.avi ├── demo_server.py ├── examples └── classify_video.py ├── models └── get_reference_models.sh ├── pyActionRec ├── __init__.py ├── action_caffe.py ├── action_classifier.py ├── action_flow.py ├── anet_db.py ├── config.py ├── utils │ ├── __init__.py │ ├── cut_videos.py │ ├── io.py │ ├── media_files.py │ ├── metrics.py │ └── video_funcs.py └── video_proc.py ├── py_requirements.txt ├── static ├── css │ └── cover.css └── img │ ├── loading-sm.gif │ └── loading.gif └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/README.md -------------------------------------------------------------------------------- /data/activity_net.v1-2.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/activity_net.v1-2.min.json -------------------------------------------------------------------------------- /data/activity_net.v1-3.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/activity_net.v1-3.min.json -------------------------------------------------------------------------------- /data/anet_v1.3_clip_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/anet_v1.3_clip_list.txt -------------------------------------------------------------------------------- /data/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/img_1.jpg -------------------------------------------------------------------------------- /data/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/img_2.jpg -------------------------------------------------------------------------------- /data/plastering.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/data/plastering.avi -------------------------------------------------------------------------------- /demo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/demo_server.py -------------------------------------------------------------------------------- /examples/classify_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/examples/classify_video.py -------------------------------------------------------------------------------- /models/get_reference_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/models/get_reference_models.sh -------------------------------------------------------------------------------- /pyActionRec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/__init__.py -------------------------------------------------------------------------------- /pyActionRec/action_caffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/action_caffe.py -------------------------------------------------------------------------------- /pyActionRec/action_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/action_classifier.py -------------------------------------------------------------------------------- /pyActionRec/action_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/action_flow.py -------------------------------------------------------------------------------- /pyActionRec/anet_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/anet_db.py -------------------------------------------------------------------------------- /pyActionRec/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/config.py -------------------------------------------------------------------------------- /pyActionRec/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/__init__.py -------------------------------------------------------------------------------- /pyActionRec/utils/cut_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/cut_videos.py -------------------------------------------------------------------------------- /pyActionRec/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/io.py -------------------------------------------------------------------------------- /pyActionRec/utils/media_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/media_files.py -------------------------------------------------------------------------------- /pyActionRec/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/metrics.py -------------------------------------------------------------------------------- /pyActionRec/utils/video_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/utils/video_funcs.py -------------------------------------------------------------------------------- /pyActionRec/video_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/pyActionRec/video_proc.py -------------------------------------------------------------------------------- /py_requirements.txt: -------------------------------------------------------------------------------- 1 | easydict 2 | protobuf 3 | youtube-dl 4 | Flask -------------------------------------------------------------------------------- /static/css/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/static/css/cover.css -------------------------------------------------------------------------------- /static/img/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/static/img/loading-sm.gif -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yjxiong/anet2016-cuhk/HEAD/templates/index.html --------------------------------------------------------------------------------