├── .gitignore ├── README.md ├── analysis ├── action_annotation.csv ├── ai_metrics.csv ├── groundtruth.ipynb ├── log_error_graph.png └── perf.csv ├── annotate.py ├── data ├── .gitignore ├── .ipynb_checkpoints │ └── statistic-checkpoint.ipynb ├── extract_frames.py ├── pncl-maskfilter.png ├── result.gif └── statistic.ipynb ├── detector.py ├── models ├── C3D │ ├── C3D_train.png │ ├── annotate-folder.py │ ├── c3d.py │ ├── c3d_detector.py │ ├── dataset.py │ ├── extract.py │ ├── feature_extractor.py │ ├── model.py │ ├── pr.png │ ├── train.py │ └── utils.py ├── LRCN │ ├── annotate-folder.py │ ├── annotate.py │ ├── dataset.py │ ├── fix_fps.py │ ├── inference_utils.py │ ├── kill_training.sh │ ├── model.py │ ├── train.py │ └── utils.py └── TSM │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── annotate.py │ ├── archs │ ├── __init__.py │ ├── bn_inception.py │ └── mobilenet_v2.py │ ├── detector.py │ ├── flow_command.txt │ ├── main.py │ ├── ops │ ├── __init__.py │ ├── basic_ops.py │ ├── dataset.py │ ├── dataset_config.py │ ├── models.py │ ├── non_local.py │ ├── temporal_shift.py │ ├── transforms.py │ └── utils.py │ ├── opts.py │ ├── rgb_command.txt │ └── test_models.py └── poster.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/README.md -------------------------------------------------------------------------------- /analysis/action_annotation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/analysis/action_annotation.csv -------------------------------------------------------------------------------- /analysis/ai_metrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/analysis/ai_metrics.csv -------------------------------------------------------------------------------- /analysis/groundtruth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/analysis/groundtruth.ipynb -------------------------------------------------------------------------------- /analysis/log_error_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/analysis/log_error_graph.png -------------------------------------------------------------------------------- /analysis/perf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/analysis/perf.csv -------------------------------------------------------------------------------- /annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/annotate.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/.ipynb_checkpoints/statistic-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/.ipynb_checkpoints/statistic-checkpoint.ipynb -------------------------------------------------------------------------------- /data/extract_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/extract_frames.py -------------------------------------------------------------------------------- /data/pncl-maskfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/pncl-maskfilter.png -------------------------------------------------------------------------------- /data/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/result.gif -------------------------------------------------------------------------------- /data/statistic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/data/statistic.ipynb -------------------------------------------------------------------------------- /detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/detector.py -------------------------------------------------------------------------------- /models/C3D/C3D_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/C3D_train.png -------------------------------------------------------------------------------- /models/C3D/annotate-folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/annotate-folder.py -------------------------------------------------------------------------------- /models/C3D/c3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/c3d.py -------------------------------------------------------------------------------- /models/C3D/c3d_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/c3d_detector.py -------------------------------------------------------------------------------- /models/C3D/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/dataset.py -------------------------------------------------------------------------------- /models/C3D/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/extract.py -------------------------------------------------------------------------------- /models/C3D/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/feature_extractor.py -------------------------------------------------------------------------------- /models/C3D/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/model.py -------------------------------------------------------------------------------- /models/C3D/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/pr.png -------------------------------------------------------------------------------- /models/C3D/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/train.py -------------------------------------------------------------------------------- /models/C3D/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/C3D/utils.py -------------------------------------------------------------------------------- /models/LRCN/annotate-folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/annotate-folder.py -------------------------------------------------------------------------------- /models/LRCN/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/annotate.py -------------------------------------------------------------------------------- /models/LRCN/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/dataset.py -------------------------------------------------------------------------------- /models/LRCN/fix_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/fix_fps.py -------------------------------------------------------------------------------- /models/LRCN/inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/inference_utils.py -------------------------------------------------------------------------------- /models/LRCN/kill_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/kill_training.sh -------------------------------------------------------------------------------- /models/LRCN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/model.py -------------------------------------------------------------------------------- /models/LRCN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/train.py -------------------------------------------------------------------------------- /models/LRCN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/LRCN/utils.py -------------------------------------------------------------------------------- /models/TSM/.gitignore: -------------------------------------------------------------------------------- 1 | checkpoint/ 2 | log/ 3 | 4 | -------------------------------------------------------------------------------- /models/TSM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/LICENSE -------------------------------------------------------------------------------- /models/TSM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/README.md -------------------------------------------------------------------------------- /models/TSM/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/annotate.py -------------------------------------------------------------------------------- /models/TSM/archs/__init__.py: -------------------------------------------------------------------------------- 1 | from .bn_inception import * 2 | -------------------------------------------------------------------------------- /models/TSM/archs/bn_inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/archs/bn_inception.py -------------------------------------------------------------------------------- /models/TSM/archs/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/archs/mobilenet_v2.py -------------------------------------------------------------------------------- /models/TSM/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/detector.py -------------------------------------------------------------------------------- /models/TSM/flow_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/flow_command.txt -------------------------------------------------------------------------------- /models/TSM/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/main.py -------------------------------------------------------------------------------- /models/TSM/ops/__init__.py: -------------------------------------------------------------------------------- 1 | from ops.basic_ops import * -------------------------------------------------------------------------------- /models/TSM/ops/basic_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/basic_ops.py -------------------------------------------------------------------------------- /models/TSM/ops/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/dataset.py -------------------------------------------------------------------------------- /models/TSM/ops/dataset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/dataset_config.py -------------------------------------------------------------------------------- /models/TSM/ops/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/models.py -------------------------------------------------------------------------------- /models/TSM/ops/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/non_local.py -------------------------------------------------------------------------------- /models/TSM/ops/temporal_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/temporal_shift.py -------------------------------------------------------------------------------- /models/TSM/ops/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/transforms.py -------------------------------------------------------------------------------- /models/TSM/ops/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/ops/utils.py -------------------------------------------------------------------------------- /models/TSM/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/opts.py -------------------------------------------------------------------------------- /models/TSM/rgb_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/rgb_command.txt -------------------------------------------------------------------------------- /models/TSM/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/models/TSM/test_models.py -------------------------------------------------------------------------------- /poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFARMS/NOR-behavior-recognition/HEAD/poster.pdf --------------------------------------------------------------------------------